tor-browser

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

border-collapse-bevels-1c.html (475B)


      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  writing-mode: vertical-rl;
     11 }
     12 td {
     13  border-top: 10px solid rgba(0,0,255,0.3);
     14  border-right: 20px solid rgba(255,0,0,0.3);
     15  border-bottom: 30px solid rgba(0,255,0,0.3);
     16  border-left: 40px solid rgba(255,0,255,0.3);
     17  width: 50px;
     18  height: 50px;
     19  padding: 0;
     20 }
     21 </style>
     22 </head>
     23 <body>
     24 
     25 <div>
     26 <table>
     27 <tr><td> </td></tr>
     28 </table>
     29 </div>