JSFiddle - React, Tailwind, and code Playground

by basarat

HTML

<html>
  
  <head>
    <title></title>
  </head>
  
  <body>
    <div id="background"></div>
    <div id="content" style="height:100%;">Lorem Ipsum
      <br />...an arbitrary amount of content...</div>
  </body>

</html>

CSS

#content, #background {
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left: 0;
}
#content {
  z-index:2;
}
#background {
  background:red;
  z-index:1;
}