I have an website and some problems with the scrollbar.
What I want I can best explain with this image.

But I can’t get the scrollbar like this.
I have tried some, here is the jsfiddle
In this fiddle I also have:
div[role="main"]
{
overflow-y: scroll;
margin: 60px 0;
}
But this margin is not OK, how do I know what margin I need without knowing the header and footer height.
This can be slowed by using padding and box-sizing = border-box on body ( with body height 100% it will count padding into height, so the box with scroll will be exactly between header and footer)
see http://jsfiddle.net/wPucQ/
EDIT: Added forgotten HTML tag in code