tor-browser

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

page-box-006-print.html (578B)


      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-page-3/#page-properties">
      4 <link rel="match" href="page-box-006-print-ref.html">
      5 <style>
      6  @page {
      7    size: 400px;
      8    margin: 50px;
      9    background: blue;
     10  }
     11  @page :first {
     12    background: white;
     13  }
     14  :root {
     15    print-color-adjust: exact;
     16  }
     17  body {
     18    margin: 0;
     19    background: yellow;
     20  }
     21 </style>
     22 Yellow background, white page margins.
     23 <div style="break-before:page;">
     24  Yellow background, blue page margins.
     25 </div>