tor-browser

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

table-width.html (317B)


      1 <link rel="match" href="table-width-ref.html">
      2 
      3 <style>
      4 table {
      5  border-collapse: collapse;
      6 }
      7 
      8 td {
      9  padding: 0;
     10 }
     11 </style>
     12 
     13 <!-- width=0 should be treated as 'auto' -->
     14 <table width=0>
     15  <tr>
     16    <td>
     17      a b
     18    </td>
     19  </tr>
     20 </table>
     21 
     22 <hr>
     23 
     24 <table width=1>
     25  <tr>
     26    <td>
     27      a b
     28    </td>
     29  </tr>
     30 </table>