JSFiddle - React, Tailwind, and code Playground
HTML
<div id="container">
<div class="content">Some Content</div>
<div class="content">Some More Content</div>
<div class="sample">Some More Content</div>
</div>
CSS
.content
{
height:100px;
width:100px;
background-color:Gray;
display:inline-block;
float:left;
border:1px solid Red;
margin:10px;
}
.sample{
height:100px;
width:100px;
background-color:Gray;
clear:both;
margin:10px;
}