tor-browser

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

page-margin-001-print.html (630B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <link rel="help" href="https://www.w3.org/TR/css-page-3/#at-page-rule">
      4 <link rel="match" href="page-margin-001-print-ref.html">
      5 <style>
      6  @page {
      7    margin: 10px 20px 30px 40px;
      8  }
      9  :root {
     10    print-color-adjust: exact;
     11  }
     12  body {
     13    margin: 0;
     14  }
     15  .fullpager {
     16    width: 100vw;
     17    height: 100vh;
     18  }
     19 </style>
     20 <div class="fullpager" style="background:yellow;">
     21  first page
     22 </div>
     23 <div class="fullpager" style="background:cyan;">
     24  second page
     25 </div>
     26 <div class="fullpager" style="background:pink;">
     27  third page
     28 </div>