JSFiddle - React, Tailwind, and code Playground
HTML
<div id="bottomlayer" class="layer">Bottom layer</div>
<div id="toplayer" class="layer">Top layer</div>
CSS
.layer {
position:absolute;
top:0px;
left:0px;
height:400px;
width:400px;
}
#bottomlayer {z-index:10}
#toplayer {z-index:20; pointer-events:none; background-color:white; display:none}
#bottomlayer:hover~#toplayer {display:block}