blob: bc76a7720c92a2ca3f661030a0c478907518668b [file] [log] [blame]
<style>
.sticky {
position: sticky;
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>