tor-browser

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

clip-border-area-border-image-ref.html (567B)


      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 transparent;
     11        background-image: url(../resources/green-100.png);
     12        background-size: 100px 100px;
     13        background-position: 15px 20px;
     14        border-image: url(../resources/stripes-100.png);
     15    }
     16    .test > div {
     17        width: 100%;
     18        height: 100%;
     19        background-color: white;
     20    }
     21 </style>
     22 </head>
     23 <body>
     24 
     25 <div class="test"><div></div></div>
     26 
     27 </body>
     28 </html>