JSFiddle - React, Tailwind, and code Playground

by Ronny

HTML

<div id="one">
</div>
<div id="two">
    Testing position: relative with z-index
</div>

CSS

div {width: 70%; height: 70%; padding: 20px; border: 1px solid #555;}
#one {background: #CCC; position: relative; z-index: 2;}
#two {background: #DDD; position: relative; left: 75px; top: -20px; z-index: 1;}