tor-browser

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

table-fragmentation-002d-print.html (920B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
      4 <link rel="author" title="Mozilla" href="https://www.mozilla.org/">
      5 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1863421">
      6 <link rel="match" href="table-fragmentation-002c-print-ref.html">
      7 
      8 <style>
      9 @page { size: 5in 3in; margin: 0.5in; }
     10 :root {
     11  print-color-adjust: exact;
     12 }
     13 body { margin: 0; }
     14 
     15 table {
     16  inline-size: 3in;
     17  block-size: 3.5in;
     18  border-spacing: 0.25in;
     19  border: 0.25in solid black;
     20  padding: 0.25in;
     21  box-decoration-break: clone;
     22 }
     23 td {
     24  vertical-align: top;
     25  padding: 0;
     26  border: 0.25in solid orange;
     27 }
     28 .content {
     29  block-size: 1.5in;
     30  background: gold;
     31 }
     32 </style>
     33 
     34 <div style="height: 0.25in">BEFORE TABLE</div>
     35 <table>
     36  <tbody>
     37    <tr>
     38      <td><div class="content"></div></td>
     39    </tr>
     40  </tbody>
     41 </table>
     42 <div style="height: 0.25in">AFTER TABLE</div>