tor-browser

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

dimensions-001-print.html (912B)


      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/#margin-dimension">
      4 <meta name="assert" content="Only one box per edge.">
      5 <link rel="match" href="dimensions-001-print-ref.html">
      6 <style>
      7  @page {
      8    margin: 100px;
      9    size: 500px 400px;
     10 
     11    @top-left {
     12      border: solid;
     13      text-align: left;
     14      vertical-align: top;
     15      width: 20%;
     16      height: 20%;
     17      content: "20%";
     18    }
     19    @right-middle {
     20      text-align: left;
     21      vertical-align: top;
     22      border: solid;
     23      width: 70%;
     24      height: 70%;
     25      content: "70%";
     26    }
     27    @bottom-right {
     28      text-align: left;
     29      vertical-align: top;
     30      border: solid;
     31      content: "auto";
     32    }
     33    @left-bottom {
     34      text-align: left;
     35      vertical-align: top;
     36      border: solid;
     37      content: "auto";
     38    }
     39  }
     40 </style>