anchor-center-scroll-ref.html (475B)
1 <!DOCTYPE html> 2 <title>CSS Test Reference</title> 3 <body style="margin:0"> 4 <div id="scroller" style="width:400px;height:400px;overflow:auto;background:orange"> 5 <div style="height:100px"></div> 6 <div style="width:100px;height:100px;background:pink"> 7 <div style="height:25px"></div> 8 <div style="width:50px;height:50px;background:purple"></div> 9 </div> 10 <div style="height:1000px"></div> 11 </div> 12 </body> 13 <script> 14 scroller.scrollTop = 100; 15 </script>