position-area-scroll-adjust-ref.html (348B)
1 <!DOCTYPE html> 2 <title>CSS Test Reference</title> 3 <p>You should see a green square below</p> 4 <div id="scroller" style="overflow:auto;width:400px;height:200px"> 5 <div style="height:200px"></div> 6 <div style="width:200px;height:200px;background:green"></div> 7 <div style="height:300px"></div> 8 </div> 9 <script> 10 scroller.scrollTop = 200; 11 </script>