tor-browser

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

percent-truncation-2.html (590B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4 <title>Percent widths on table cells</title>
      5 <style type="text/css">
      6 
      7 table {
      8  border-spacing: 0;
      9  padding: 0;
     10  border: none;
     11  empty-cells: show;
     12 }
     13 
     14 td {
     15  border: none;
     16  padding: 0;
     17 }
     18 
     19 </style>
     20 </head>
     21 <body>
     22 
     23 <table><tr height="50">
     24 <td style="background:yellow"  width="40%"><div style="width:100px"></div></td>
     25 <td style="background:aqua"    width="40%"><div style="width:100px"></div></td>
     26 <td style="background:fuchsia" width="40%"><div style="width:100px"></div></td>
     27 <td style="background:blue"    width="40%"></td>
     28 </tr></table>
     29 
     30 </body>
     31 </html>