html/css buttons that scroll down to different div sections on a webpage
For something really basic use this:
<a href="#middle">Go To Middle</a>
Or for something simple in javascript check out this jQuery plugin ScrollTo. Quite useful for scrolling smoothly.
try this:
<input type="button" onClick="document.getElementById('middle').scrollIntoView();" />