tor-browser

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

mix-blend-mode-dest-alpha-1135271.html (335B)


      1 <!DOCTYPE HTML>
      2 <head>
      3  <style>
      4    .parent {
      5       width: 200px;
      6       height: 200px;
      7       isolation: isolate;
      8    }
      9    .child {
     10      width: 200px;
     11      height: 200px;
     12      mix-blend-mode: multiply;
     13      background: green;
     14    }
     15  </style>
     16 </head>
     17 <body>
     18 <div class="parent">
     19  <div class="child">
     20  </div>
     21 </div>
     22 </body>