JSFiddle - React, Tailwind, and code Playground
HTML
<div class="static box">
<div class="static2 box">
</div>
</div>
<div class="box static3">
</div>
CSS
.box {
width: 100px;
height: 100px;
position: static;
}
.static {
background: yellow;
}
.static2 {
background: green;
/*margin-left: 50px;*/
width: 50%;
height: 50%;
}
.static3 {
background: red;
}