JSFiddle - React, Tailwind, and code Playground

by incutonez

HTML

<div class="parent">
  Parent
  <div class="child">
    Hello!
  </div>
</div>

CSS

.parent {
  z-index: 50;
}

.child {
  z-index: 40;
}