tor-browser

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

fixedpos-010-print.html (835B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <link rel="help" href="https://drafts.csswg.org/css-position-3/#valdef-position-fixed">
      4 <link rel="match" href="fixedpos-010-print-ref.html">
      5 <style>
      6  :root {
      7    print-color-adjust: exact;
      8  }
      9  @page {
     10    size: 400px;
     11    margin: 0;
     12  }
     13  @page large {
     14    size: 500px 400px;
     15  }
     16  body {
     17    margin: 0;
     18  }
     19 </style>
     20 <div style="position:fixed; right:-100px; bottom:0; width:100px; height:100px; background:blue;"></div>
     21 This page should <em>not</em> have a blue box.
     22 <div style="page:large; width:400px;">
     23  This page should have a blue box in the bottom right corner.
     24  <div style="break-before:page;">
     25    This page should have a blue box in the bottom right corner.
     26  </div>
     27 </div>
     28 This page should <em>not</em> have a blue box.