tor-browser

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

position-fixed-overflow-print.html (760B)


      1 <!doctype html>
      2 <title>position: fixed doesn't overflow the margin area</title>
      3 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
      4 <link rel="author" title="Mozilla" href="https://mozilla.org">
      5 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1714513">
      6 <link rel="help" href="https://drafts.csswg.org/css-position/#abspos-insets">
      7 <link rel="match" href="position-fixed-overflow-print-ref.html">
      8 <style>
      9  :root {
     10    print-color-adjust: exact;
     11  }
     12  body { margin: 0 }
     13 
     14  #outer, #inner {
     15    background-color: purple;
     16    width: 100vw;
     17    height: 100vh;
     18  }
     19 
     20  #inner {
     21    position: fixed;
     22    background-color: blue;
     23    top: 0;
     24    left: 50%;
     25  }
     26 </style>
     27 <div id="outer">
     28  <div id="inner"></div>
     29 </div>