tor-browser

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

mask-opacity-1-ref.html (530B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>CSS Masking: mask-image: mask with opacity</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        position: absolute;
     11        left: 10px;
     12        top: 60px;
     13        background-color: rgba(0,0,255,0.5);
     14        width: 100px;
     15        height: 50px;
     16      }
     17    </style>
     18  </head>
     19  <body>
     20    <div></div>
     21  </body>
     22 </html>