blob: 10d2034b804bf83c9d93aa6d750ac5dd50e4840f [file] [log] [blame] [edit]
<!DOCTYPE html>
<style>
#scroller {
width: 400px;
height: 400px;
overflow-y: scroll;
}
.box {
min-height: 100px;
width: 100px;
}
#anchor {
background: orange;
}
#anchored {
width: 100px;
height: 100px;
background: green;
}
</style>
<div id="scroller">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box" id="anchor"></div>
<div id="anchored"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
<script>
scroller.scrollTop = 250;
</script>