JSFiddle - React, Tailwind, and code Playground
HTML
<div style="width: 200px; height: 200px; position: relative;">
<div style="background: red; width: 100px; height: 50px; position: absolute; top: 50px; left: 50px; z-index: 2">on top</div>
<div style="background: green; width: 200px; height: 200px; position: absolute; top: 0; left: 0; z-index: 1">below</div>
</div>