tor-browser

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

scaled-blend-mode-ref.html (352B)


      1 <html>
      2 <head>
      3  <style>
      4    body { margin: 0px; }
      5    div {
      6      width: 200px;
      7      height: 200px;
      8    }
      9    #scale {
     10      transform: scale(2);
     11      transform-origin: top left;
     12    }
     13    #blend {
     14      mix-blend-mode: multiply;
     15    }
     16  </style>
     17 </head>
     18 <body>
     19  <div id="blend">
     20    <div id="scale">
     21      Hello
     22    </div>
     23  </div>
     24 </body>
     25 </html>