JSFiddle - React, Tailwind, and code Playground
by blinkydamo
HTML
<div id="wrapper">
<div id="box1"></div>
<div id="box2"></div>
</div>
CSS
#wrapper {
height: 60px;
margin: auto 0 auto 0;
border: 1px solid red;
}
#box1 {
margin: auto 0 0 0;
height: 20px;
background: #ff0000;
z-index: -1;
}
#box2 {
margin: auto 0 5 0;
height: 20px;
background: #00ff00;
z-index: -2;
}