blob: 53be703c94f1ea186674baf06d0203cb03729f0c [file] [log] [blame]
<style>
body {
margin: 0;
}
.scroller {
overflow: auto;
width: 100px;
height: 200px;
outline: 2px solid black;
}
.container {
height: 500px;
width: 50px;
background: red;
}
.marker {
height: 50px;
width: 50px;
position: relative;
top: 225px;
background: green;
}
</style>
<script>
window.addEventListener('load', function() {
document.querySelector('.scroller').scrollTop = 200;
});
</script>
<div class="scroller">
<div class="container">
<div class="marker"></div>
</div>
</div>