JSFiddle - React, Tailwind, and code Playground

by nordy

HTML

<div class="one">
  <div class="two">This is two</div>
    <div class="two">This is two
      <div class="three">This is three</div>
   </div>
</div>

CSS

.one {
    border:1px solid black;
    background:red;
    position:relative;
    z-index:5
 }

.two {
    background:green;
    position:relative;
 }

.three {
    position:relative;
}