tor-browser

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

basic-pagination-001-print.html (435B)


      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/">
      4 <link rel="match" href="basic-pagination-001-print-ref.html">
      5 <style>
      6  @page {
      7    size: 293px;
      8    margin: 5px;
      9  }
     10  :root {
     11    print-color-adjust: exact;
     12  }
     13  div {
     14    break-after: page;
     15  }
     16  body {
     17    margin: 0;
     18    background: yellow;
     19  }
     20 </style>
     21 <div>Page</div>