blob: 2fa0a2a9ed46e9a5419784e58453a2830a751829 (
plain)
1
2
3
4
5
6
7
8
9
|
<!DOCTYPE html>
<style>body { margin: 0 }</style>
<div style="height: 3200px"></div>
<div style="position: fixed; top: 100px; left: 0;
width: 200px; height: 200px; background: green"></div>
<script>
window.scrollTo(0, 2000);
</script>
|