JSFiddle - React, Tailwind, and code Playground

HTML

<div id="parent1" style="position: relative; width: 400px; height: 100px; background: #fcc">
              <span>red header</span>
              <div id="absoluteChild" style="position: absolute; top: 0px; left: 0px; width: 200px; height: 200px; z-index: 100; background: #cfc">
                     <span>On all browsers except IE7, the green box will be on top of the blue box on bottom and cover some of the text</span>
              </div>
       </div>
       <div id="parent2" style="position: relative; width: 400px; height: 200px; background: #ccf">          
              <span>The text in this box is fully visible only on IE7.  Even though the green box has a high z-index, IE7 still paints the blue box on top </span>
       </div>