tor-browser

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

clip-border-area-multiple-backgrounds-ref.html (414B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <style>
      5    .test {
      6        display: inline-block;
      7        margin: 20px;
      8        width: 300px;
      9        height: 200px;
     10        box-sizing: border-box;
     11        border: 50px dotted blue;
     12        background-clip: border-box;
     13        background-color: red;
     14        background-image: url(../resources/green-100.png);
     15    }
     16 </style>
     17 </head>
     18 <body>
     19 
     20 <div class="test"></div>
     21 
     22 </body>
     23 </html>