JSFiddle - React, Tailwind, and code Playground
HTML
<div class="position"> <div>
<div style="height:100px;"> </div>
<div class="noposition"> <div>
CSS
div.position
{
width:100px;
height:100px;
background:red;
left:10px;
top:100px;
position:static;
}
div.noposition{
width:100px;
height:100px;
background:blue;
left:10px;
top:100px;
}