JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<div id="P1" style="position:relative">
<div id="P1_child" style="z-index: 2; position:absolute">P1</div>
</div>
<div id="P2" style="position:relative">
<div id="P2_child" style="z-index: 1; position:absolute">P2</div>
</div>
</div>
CSS
#P1_child{width:450px;height:40px}
#P2_child{width:140px;height:80px; margin-left:120px;}
#P1_child{background:red; margin-left:30px; margin-top:25px;}
#P2_child{background:yellow;}