JSFiddle - React, Tailwind, and code Playground

by Nic Fontaine

HTML

<div class="one">
</div>
<div class="two">
</div>

CSS

div {
  width: 100px;
  height: 100px;
  position: absolute;
}
.one {
  background: teal;
  z-index: 10;
  transform: translate(5px, 5px);
}
.two {
  background: gold;
  left: 20px;
  top: 20px;
  z-index: 5;
}