JSFiddle - React, Tailwind, and code Playground

by Blake Plumb

HTML

<div id="container"><div id="style"></div>Here is some text</div>

CSS

#container{
   position: relative;
   background: red;
   height: 500px;
   width: 500px;
   z-index: 1; 
}

#style{
  position: absolute;
  background: green; 
  height: 50%;
  width: 30em;
  z-index: -1;   
}