blob: 980f2766d419be1c85dfb990a33d3ad7562da1de [file] [log] [blame] [edit]
<!DOCTYPE html>
<style>
body {
height: 1000px;
padding-top: 300px;
}
body > div {
display: inline-block;
width: 100px;
height: 100px;
background: green;
}
</style>
You should see three green boxes.<br>
<div></div>
<div></div>
<div></div>
<script>
// Scroll on load to test fixed positioning.
scrollTo(0, 300);
</script>