tor-browser

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

anchor-scroll-fixedpos-002-ref.html (396B)


      1 <!DOCTYPE html>
      2 <style>
      3 body {
      4  margin: 0;
      5  height: 2000px;
      6 }
      7 
      8 div {
      9  width: 100px;
     10  height: 100px;
     11 }
     12 
     13 #anchor {
     14  position: fixed;
     15  left: 300px;
     16  top: 300px;
     17  background: orange;
     18 }
     19 
     20 #anchored {
     21  position: fixed;
     22  left: 400px;
     23  top: 300px;
     24  background: green;
     25 }
     26 
     27 </style>
     28 
     29 <div id="anchor"></div>
     30 <div id="anchored"></div>
     31 
     32 <script>
     33 document.documentElement.scrollTop = 200;
     34 </script>