JSFiddle - React, Tailwind, and code Playground

by kurin

HTML

<div>
  <div class="aa" style="float:left;background: red;">
  AAA
  </div>
  <div class="aa" style="float:right;background: green;">
  BBB
  </div>
  <div class="aa" style="background: #ff8800;clear: both;">
  CCC
  </div>
</div>

  <div class="aa" style="background: grey;">
  DDDD
  </div>

CSS

.aa{
  width: 100px;
  height: 100px;
}