tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

stacking-context-ref.html (518B)


      1 <!doctype HTML>
      2 <style>
      3  * {
      4    margin: 0;
      5  }
      6  .el {
      7    width: 50px;
      8    height: 60px;
      9  }
     10 
     11 </style>
     12 <div style="isolation: isolate">
     13  <div class="el"
     14      style="position: absolute; z-index: 1; top: 40px; left: 10px; border: 1px solid black; background: lightblue"></div>
     15  <div class="el"
     16      style="position: absolute; z-index: 2; top: 5px; left: 5px; border: 1px solid black; background: lightgreen"></div>
     17 </div>
     18 <div id=top class="el" style="position: relative; background: lightgray; top: 50px"></div>