tor-browser

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

bg-fixed-in-opacity.html (626B)


      1 <!DOCTYPE html>
      2 <html reftest-async-scroll
      3      reftest-displayport-x="0" reftest-displayport-y="0"
      4      reftest-displayport-w="800" reftest-displayport-h="2000"
      5      reftest-async-scroll-x="0" reftest-async-scroll-y="50.23">
      6 <style>
      7 
      8 html {
      9  scrollbar-width: none;
     10 }
     11 
     12 body {
     13  margin: 0px;
     14  position: relative;
     15  height: 1200.23px;
     16 }
     17 
     18 .fixed-background {
     19  position: absolute;
     20  top: 0px;
     21  bottom: 0px;
     22  width: 100px;
     23  background: linear-gradient(blue, blue) no-repeat fixed 0px 200px;
     24  background-size: 100px 100px;
     25  opacity: 0.5;
     26 }
     27 
     28 </style>
     29 <div style="overflow: hidden;" class="fixed-background"></div>
     30 </html>