JSFiddle - React, Tailwind, and code Playground
HTML
<div id="root">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
CSS
#root{
background: red;
width: 400px;
}
#root > div{
display: inline-block;
width: 50px;
height: 50px;
background: blue;
}