tor-browser

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

border-style-outset-becomes-groove.html (268B)


      1 <!DOCTYPE html>
      2 <style>
      3  /* In border-collapse mode, outset becomes groove. */
      4  table { border-collapse: collapse; }
      5  table, td { border-style: outset; }
      6  td { border-width: 20px; width: 100px; height: 100px}
      7 </style>
      8 <table>
      9  <tr>
     10    <td></td>
     11  </tr>
     12 </table>