tor-browser

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

percent-small-nested.html (589B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4 <title>Percent widths on table cells</title>
      5 <style type="text/css">
      6 
      7 td > table {
      8  border-spacing: 3px 5px;
      9  padding: 2px 3px 4px 5px;
     10 }
     11 
     12 td {
     13  border: none;
     14  padding: 0;
     15 }
     16 
     17 span {
     18  display: inline-block;
     19  width: 50px;
     20  background: fuchsia;
     21  color: fuchsia;
     22 }
     23 
     24 </style>
     25 </head>
     26 <body>
     27 
     28 <table border><tr><td>
     29 <table><tr>
     30 <td style="background: yellow;color:yellow"><span>x</span></td>
     31 <td style="background:aqua;color:aqua" width="50%"><span>x</span>&#x200b;<span>x</span>&#x200b;<span>x</span></td>
     32 </tr></table>
     33 </td></tr></table>
     34 
     35 </body>
     36 </html>