JSFiddle - React, Tailwind, and code Playground
HTML
<div class="item">
</div>
<div class="item">
<div class="item-abs">
</div>
</div>
<div class="item2">
</div>
CSS
.item,.item2
{
position:relative;
z-index:2;
float:left;
background-color:red;
width:100px;
height:100px;
margin:10px;
}
.item2 {
z-index:4;
}
.item-abs
{
position:absolute;
top:10px;
left:40px;
background-color:blue;
width:100px;
height:100px;
}