Here’s a the code to fix the annoying jumping pages in Firefox caused by lack of vertical content. This code allows for the scrollbar to show even when not needed.
html {
overflow-y: scroll;
}
Here’s a the code to fix the annoying jumping pages in Firefox caused by lack of vertical content. This code allows for the scrollbar to show even when not needed.
html {
overflow-y: scroll;
}
January 31st, 2008 at 4:54 am
If it’s only Firefox you’re interested in fixing, why not use:
html { overflow: -moz-scrollbars-vertical; }
This will give you a nice greyed-out vertical toolbar as IE does.