JSFiddle - React, Tailwind, and code Playground
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;
}