JSFiddle - React, Tailwind, and code Playground

HTML

<div id="left">LeftDiv</div>
<div id="right">RightDiv</div>

CSS

#right, #left {
    position: absolute;
}

#right {
    background-color: red;
}

#left {
    background-color: yellow;
    z-index: 5;
}