JSFiddle - React, Tailwind, and code Playground

by Slava Fomin II

HTML

<div class="container">
  <div class="foo">
    <div class="foo__item"></div>
  </div>
  <div class="bar"></div>
  <div class="baz"></div>
</div>

CSS

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: column;
  margin: 20px;
  border: 2px dashed deeppink;
}

.foo, .bar, .baz {
  height: 100px;
}

.foo {
  display: inline-block;
  background-color: skyblue;
}

.foo__item {
  width: 600px;
  height: 96px;
  border: 2px solid black;
}

.bar {
  background-color: lime;
}

.baz {
  background-color: orange;
}