JSFiddle - React, Tailwind, and code Playground
by darkajax
HTML
<div class="parent">
<div class="child">child</div>
</div>
CSS
.parent {width:100%; height:70px; background-color:blue; position:absolute;}
.child {color:#fff; width:50px; height:100px; background-color:red; position:relative; left:50%; z-index:-1;}