tor-browser

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

table-row-pagination-001-print.html (803B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4 <link rel="match" href="table-row-pagination-001-print-ref.html">
      5 <link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#tables-2">
      6 <link rel="help" href="https://drafts.csswg.org/css-break/">
      7 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=685012">
      8 <meta charset="utf-8">
      9 <title>Testing row split</title>
     10 <style type="text/css">
     11 @page { size:5in 3in; margin:0.5in; }
     12 html,body {
     13  print-color-adjust: exact;
     14  color:black;
     15  background-color:white;
     16  font-size:16px;
     17  padding:0;
     18  margin:0;
     19  height:100%;
     20 }
     21 table { height:160%; width:100%; }
     22 td { height:50%; width:100%; }
     23 </style>
     24 </head>
     25 <body>
     26 
     27 <table border="0" cellspacing="0" cellpadding="0">
     28 <tr><td></td></tr>
     29 <tr><td valign="top">1</td></tr>
     30 </table>
     31 
     32 
     33 </body>
     34 </html>