tor-browser

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

table-col-overlapping-ref.html (348B)


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