tor-browser

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

position-fixed-overflow-print-ref.html (362B)


      1 <!doctype html>
      2 <title>Test reference</title>
      3 <style>
      4  :root {
      5    print-color-adjust: exact;
      6  }
      7  body { margin: 0 }
      8 
      9  #outer, #inner {
     10    background-color: purple;
     11    width: 50%;
     12    height: 100vh;
     13  }
     14 
     15  #inner {
     16    position: absolute;
     17    background-color: blue;
     18    top: 0;
     19    left: 50%;
     20  }
     21 </style>
     22 <div id="outer">
     23  <div id="inner"></div>
     24 </div>