JSFiddle - React, Tailwind, and code Playground

by damiantt

HTML

<div id="parent">

  <div class="child">Foo
  </div>
  <div class="child">Bar
  </div>

</div>

CSS

#parent {
  border: 2px black;
  border-style: none solid solid solid;
  height: 150px;
  width: 200px;
  vertical-align: bottom;
  display: table-cell;
}

.child {
  background: green;
  height: 30px;
  margin: 6px;
}