tor-browser

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

printpreview_pps2.html (425B)


      1 <!DOCTYPE html>
      2 <!-- This is a testcase for a "2-pages-per-sheet" scenario.
      3     There are 2 full-page "swatches" with large colorful borders. -->
      4 <style>
      5 html, body { margin: 0; height: 100%; }
      6 .swatch {
      7  box-sizing: border-box;
      8  border: 240px solid;
      9  height: 100%;
     10 }
     11 .swatch:nth-child(1) { border-color: cyan; }
     12 .swatch:nth-child(2) { border-color: pink; }
     13 </style>
     14 <div class="swatch"></div>
     15 <div class="swatch"></div>