tor-browser

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

table-col-overlapping.html (373B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <style>
      5  td {
      6    width: 20px;
      7    height: 20px;
      8  }
      9  table {
     10    border-collapse:separate;
     11    border-spacing: 0px;
     12  }
     13 </style>
     14 </head>
     15 <body>
     16 <table>
     17  <col style="background: green"></col>
     18  <col style="background: blue"></col>
     19  <tr>
     20    <td></td>
     21    <td rowspan=2></td>
     22  <tr>
     23    <td colspan=2></td>
     24  </tr>
     25 </table>
     26 </body>
     27 </html>