tor-browser

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

anchor-scroll-fixedpos-ref.html (365B)


      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  margin: 300px;
     15  background: orange;
     16 }
     17 
     18 #anchored {
     19  position: fixed;
     20  left: 400px;
     21  top: 100px;
     22  background: green;
     23 }
     24 
     25 </style>
     26 
     27 <div id="anchor"></div>
     28 <div id="anchored"></div>
     29 
     30 <script>
     31 document.documentElement.scrollTop = 200;
     32 </script>