anchor-scroll-fixedpos-003-ref.html (532B)
1 <!DOCTYPE html> 2 3 <style> 4 body { 5 margin: 0; 6 } 7 8 div { 9 width: 100px; 10 height: 100px; 11 font-size: 16px; 12 background: green; 13 color: white; 14 } 15 16 #anchor { 17 margin-top: 105vh; 18 background: orange; 19 } 20 21 #anchored { 22 position: absolute; 23 top: calc(105vh - 100px); 24 background: green; 25 } 26 </style> 27 28 <body> 29 <div id="anchor"></div> 30 <div id="anchored">Anchored element</div> 31 32 <script> 33 const anchor = document.getElementById("anchor"); 34 anchor.scrollIntoView(false); 35 </script> 36 </body>