blob: 38fd5c5c5a1d919637b5dff1dc3e9f6108a563bc [file] [log] [blame]
<!DOCTYPE html>
<style>
body {
margin: 0;
height: 2000px;
overflow: hidden; /* hide scrollbars */
}
#spacer {
height: 0px;
}
.container {
background-color: red;
width: 200px;
height: 400px;
outline: 2px solid black;
}
.box {
width: 200px;
height: 200px;
}
.sticky {
position: relative;
top: 200px;
background-color: green;
}
</style>
<script>
function doTest()
{
window.scrollTo(0, 200);
}
window.addEventListener('load', doTest, false);
</script>
<div id="spacer"></div>
<div class="container">
<div class="sticky box"></div>
</div>