blob: 356061f630bd1be64805830b73e6f6227cffbb25 [file] [log] [blame]
<script>
onload = function() {
scroller.scrollTop = 100;
}
</script>
<style>
#scroller {
background: white;
height: 200px;
overflow: auto;
width: 200px;
}
.sticky {
position: relative;
top: 100px;
height: 50px;
background: green;
}
.spacer {
height: 2000px;
}
</style>
<div id="scroller">
<div class="sticky"></div>
<div class="spacer"></div>
</div>