JSFiddle - React, Tailwind, and code Playground

by Richard Hunter

HTML

<div class="container">
  <div class="foo"></div>
</div>

CSS

.container {
  background: rebeccapurple;
  padding: 20px;
  border: solid 2px red;
  display: flow-root;
  
}
.foo {
  
  float: left;
  height: 100px;
  width: 100px;
  background: yellow;
}