JSFiddle - React, Tailwind, and code Playground
by Justin
HTML
<div class="something">I'm lame and ordinary.</div>
<div class="special">I'm special!! Plus, I'm behind this other div.</div>
CSS
.something
{
height: 400px;
width: 400px;
z-index:999;
background-color: rgba(250,50,50,.3);
}
.special {
z-index: 99;
top: 200px;
width: 100px;
height: 100px;
position: absolute;
}