<!DOCTYPE html>
<style>
div {
width: 100px;
height: 100px;
}
.box {
background-color: green;
}
.spacer {
position:absolute;
height: 2000px;
}
</style>
<script>
onload = function() {
window.scrollTo(0, 25);
};
</script>
<body>
<div class="spacer"></div>
<div class="box"></div>