tor-browser

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

border-image-repeat-space-5-ref-2.html (644B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>CSS Border Image: border-image-repeat: space</title>
      6    <link rel="author" title="Ethan Lin" href="mailto:ethlin@mozilla.com">
      7    <link rel="author" title="Mozilla" href="https://www.mozilla.org">
      8    <style type="text/css">
      9      .outer {
     10        position: absolute;
     11        left: 0px;
     12        top: 0px;
     13        border: 27px solid transparent;
     14        border-image: url("support/border.png") 27;
     15        border-image-repeat: repeat repeat;
     16        width: 81px;
     17        height: 81px;
     18      }
     19    </style>
     20  </head>
     21  <body>
     22    <div class="outer"></div>
     23  </body>
     24 </html>