tor-browser

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

background-attachment-fixed-ref.html (537B)


      1 <!DOCTYPE html>
      2 <style>
      3 .blue {
      4  position: absolute;
      5  top: 0;
      6  width: 40px;
      7  height: 100px;
      8  background: blue;
      9 }
     10 .green {
     11  position: absolute;
     12  top: 100px;
     13  width: 40px;
     14  height: 100px;
     15  background: green;
     16 }
     17 </style>
     18 <div class="blue" style="left: 30px; top: 30px; height: 70px"></div>
     19 <div class="green" style="left: 30px"></div>
     20 <div class="blue" style="left: 140px"></div>
     21 <div class="green" style="left: 140px"></div>
     22 <div class="blue" style="left: 250px"></div>
     23 <div class="green" style="left: 250px; height: 70px"></div>