JSFiddle - React, Tailwind, and code Playground

by hendrikdegraaf

HTML

<div class="layer zi-1000">
  <div class="layer zi-2000">
    
  </div>
</div>

<div class="layer zi-1000">
  <div class="layer zi-2000">
    What
  </div>
</div>

CSS

.layer {
  position: absolute;
  opacity: 0.2;
  width: 60px;
  height: 60px;
  top: 0;
  left: 0;
}
zi-1000 {
  z-index: 1000;
  background-color: red;  
}
zi-2000 {
  z-index: 3000;
  background-color: blue;
  top: 10px;
  left: 10px;
}
zi-3000 {
  z-index: 3000;
  background-color: magenta;
  top: 20px;
  left: 20px;
}
zi-4000 {
  z-index: 4000;
  background-color: green;
  top: 30px;
  left: 30px;
}
zi-5000 {
  z-index: 5000;
  background-color: orange;
  top: 40px;
  left: 40px;
}