tor-browser

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

table-cell-vertical-align-001-print-ref.html (757B)


      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 
      6 <style>
      7 @page { size: 5in 3in; margin: 0.5in; }
      8 body { margin: 0; }
      9 
     10 td {
     11  border: 3px solid purple;
     12  vertical-align: top;
     13 }
     14 ol {
     15  margin: 0;
     16 }
     17 </style>
     18 
     19 <table>
     20  <tr>
     21    <td>
     22      <ol>
     23        <li></li><li></li><li></li><li></li>
     24        <li></li><li></li><li></li><li></li>
     25        <li></li><li></li><li></li><li></li>
     26      </ol>
     27    </td>
     28    <td>top</td>
     29    <td>middle</td>
     30    <td>bottom</td>
     31    <td rowspan="2">bottom</td>
     32  </tr>
     33  <tr>
     34    <td colspan="4">
     35      <ol>
     36        <li></li><li></li>
     37        <li></li><li></li>
     38      </ol>
     39    </td>
     40  </tr>
     41 </table>