tor-browser

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

table-width-s.html (333B)


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