JSFiddle - React, Tailwind, and code Playground
HTML
<div class="red">
<div class="blue"></div>
</div>
<div class="green">
</div>
CSS
div {
width: 100px;
height: 100px;
}
.red {
position: relative;
background: red;
}
.blue {
position: absolute;
background: blue;
top: 20px;
left: 40px;
z-index: 3;
}
.green {
position: relative;
background: green;
margin-top: -50px;
margin-left: 20px;
}