JSFiddle - React, Tailwind, and code Playground
by charmis
HTML
<div id="grey_box"></div>
<div id="blue_box"></div>
<div id="gold_box"></div>
CSS
#grey_box {
width: 200px;
height: 200px;
border: solid 1px #ccc;
background: #ddd;
z-index: 9999;
}
#blue_box {
width: 200px;
height: 200px;
border: solid 1px #4a7497;
background: #8daac3;
z-index: 500;
}
#gold_box {
width: 200px;
height: 200px;
border: solid 1px #8b6125;
background: #ba945d;
z-index: 1;
}