JSFiddle - React, Tailwind, and code Playground

by cathead

HTML

<div class="foo">
  <div class="foo__body">
    <div>
      hello
    </div>
    <div>
    world
    </div>
  </div>
  
</div>

CSS

.foo {
  background-color: gold;
  min-height: 200px;
}

.foo__body {
  display: flex;
}