blob: 3fb371a0da5fec433cb952c5e4391bfaf111d5dd [file] [log] [blame]
<style>
.sticky {
position: relative;
top: 0;
margin-bottom: 800px;
height: 100px;
}
</style>
<script>
onload = function() {
target.scrollIntoView();
}
</script>
<body>
<div class="sticky" style="background: red;"></div>
<div class="sticky" style="background: green;" id="target"></div>
</body>
</html>