tor-browser

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

basic-pagination-002-print.html (530B)


      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-002-print-ref.html">
      5 <style>
      6  @page {
      7    size: 293px;
      8    margin: 5px;
      9  }
     10  :root {
     11    print-color-adjust: exact;
     12  }
     13  body {
     14    break-before: page;
     15    break-after: page;
     16    margin: 0;
     17    background: yellow;
     18  }
     19  div {
     20    break-before: page;
     21    break-after: page;
     22  }
     23 </style>
     24 <div>Page one</div>
     25 <div>Page two</div>