tor-browser

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

page-margin-001-print-ref.html (578B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <style>
      4  @page {
      5    margin: 0;
      6  }
      7  :root {
      8    print-color-adjust: exact;
      9  }
     10  body {
     11    margin: 0;
     12  }
     13  .fullpager {
     14    break-before: page;
     15    margin-top: 10px;
     16    margin-left: 40px;
     17    width: calc(100vw - 60px);
     18    height: calc(100vh - 40px);
     19  }
     20 </style>
     21 <div class="fullpager" style="background:yellow;">
     22  first page
     23 </div>
     24 <div class="fullpager" style="background:cyan;">
     25  second page
     26 </div>
     27 <div class="fullpager" style="background:pink;">
     28  third page
     29 </div>