JSFiddle - React, Tailwind, and code Playground

by benhowdle89

HTML

<div id="box-a">
  <div id="box-left">hi</div>
  </div><!-- box-a -->

CSS

#box-a {
  height: auto;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
    background: yellow;
    overflow: auto;
  }

  #box-left {
  width: 100px;
  height: auto;
  float: left;
  }