tor-browser

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

background-blend-mode-body-fixed.html (363B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>Blend a background image and a background color on the root, specifying background-attachment: fixed</title>
      4 
      5 <style>
      6 
      7 html {
      8  scrollbar-width: none;
      9 }
     10 
     11 body {
     12  background: url('as-image/white_square.svg'), #777777;
     13  background-attachment: fixed ;
     14  height: 20000px;
     15  background-blend-mode: multiply;
     16 }
     17 
     18 </style>