tor-browser

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

bug1375518-2.html (340B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <title>Table border collapse</title>
      5 <style>
      6  div > span {
      7    display: table-cell;
      8    background-color: black;
      9    height: 100px;
     10    width: 100px;
     11    border-radius: 50px;
     12  }
     13  div {
     14    display: table;
     15    border-collapse: collapse;
     16  }
     17 </style>
     18 </head>
     19 <body>
     20  <div><span></span></div>
     21 </body>
     22 </html>