Пожалуйста. Прокрутка div вместо страницы:
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
}
#scroller{
overflow: auto;
height: 100%;
background: blue;
}
#content{
height: 2000px;
}
</style>
<div id="scroller">
<div id="content"></div>
</div>