Fixed scroll

Permalink
Are there a way to have a fixed scroll bar in all browsers no matter if it's needed or not, so we prevent the website to jump?

Thanks

 
JohntheFish replied on at Permalink Best Answer Reply
JohntheFish
You need to write a style for the html element of your page:
html {
overflow-y: scroll;
}


or in the page
<html style="overflow-y:scroll;">
...
...


Another way of doing it is to set the height to 101%.
mikkelwh replied on at Permalink Reply
Thanks a lot, its working.