tor-browser

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

border-collapse-bevels-1d.html (493B)


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