tor-browser

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

border-collapse-bevels-1-ref.html (446B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset=utf-8>
      5 <style>
      6 table {
      7  margin: 10px;
      8  border-spacing: 0;
      9  border-collapse: collapse;
     10 }
     11 td {
     12  border-top: 10px solid rgba(0,0,255,0.3);
     13  border-right: 20px solid rgba(255,0,0,0.3);
     14  border-bottom: 30px solid rgba(0,255,0,0.3);
     15  border-left: 40px solid rgba(255,0,255,0.3);
     16  width: 50px;
     17  height: 50px;
     18  padding: 0;
     19 }
     20 </style>
     21 </head>
     22 <body>
     23 
     24 <div>
     25 <table>
     26 <tr><td> </td></tr>
     27 </table>
     28 </div>