tor-browser

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

clip-border-area-border-on-top-ref.html (442B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <style>
      5    .test {
      6        margin: 20px;
      7        width: 300px;
      8        height: 200px;
      9        box-sizing: border-box;
     10        border: 50px solid rgba(0, 128, 0, 0.75);
     11        background-image: url(../resources/green-100.png);
     12    }
     13 
     14    .test > div {
     15        width: 100%;
     16        height: 100%;
     17        background-color: orange;
     18    }
     19 </style>
     20 </head>
     21 <body>
     22 <div class="test"><div></div></div>
     23 </body>
     24 </html>