tor-browser

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

border-style-inset-becomes-ridge.html (283B)


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