tor-browser

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

mask-image-6-ref.html (626B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>CSS Masking: mask on inline element</title>
      6    <link rel="author" title="CJ Ku" href="mailto:cku@mozilla.com">
      7    <link rel="author" title="Mozilla" href="https://www.mozilla.org">
      8    <style type="text/css">
      9      div {
     10        width: 100px;
     11        height: 100px;
     12        font-size: 100px;
     13        line-height: 100px;
     14      }
     15 
     16      div.mask-by-png {
     17        mask-image: url(support/transparent-100x50-blue-100x50.png);
     18      }
     19    </style>
     20  </head>
     21  <body>
     22    <div class="mask-by-png">A</div>
     23    <div class="mask-by-png">B</div>
     24  </body>
     25 </html>