JSFiddle - React, Tailwind, and code Playground

by gasp10

HTML

<div class="top">
    <div class="bottom"></div>
</div>

CSS

.top {
    z-index: 1;
    width: 100px;
    height:100px;
    background: red;
}
.bottom {
   position: relative;
   z-index: 2;
   width: 100px;
   height:100px;
   background: white;
   top:-50px;
   left:50px;
}