I came across an issue with one of our web sites:

In IE9 the page had a vertical scrollbar, but you couldn't use the mousewheel, arrow keys, pgup/pgdwn to scroll. The only way to scroll was to actually click/hold and move the scrollbar.

I removed the following from the css:

{
    overflow-x: hidden;
}

Then scrolling worked as usual. Has anyone else come across this? It seems odd as overflow-x should hide the horizontal scroll bar? Why would it effect the vertical?

I have tried this on a test page and it acts as expected. So it must be a combination of things.

link|improve this question
"*I have tried this on a test page and it acts as expected. So it must be a combination of things." - unless someone has come across this before, we need a test page that reproduces the problem. You can either post a link to the site, or take a copy of the page yourself and anonymise it and have all the required CSS (and any JavaScript relevant to the problem) included and post it on JS Bin. – thirtydot Sep 7 '11 at 14:29
Apologies, I don't have permission to post a link to the materials themselves (they are subscription only). This was mainly out of interest, as I have managed to fix the issue, its just I don't understand why the fix worked. Unfortunately I can't simply upload a page as it is part of an e-learning system. – McShefferty Sep 7 '11 at 14:35
feedback

2 Answers

Try using the following code snippet. This should solve your issue.

body, html { overflow-x: hidden; overflow-y: auto; }

link|improve this answer
feedback

overflow-x: hidden;
would hide any thing on the x-axis that goes outside of the element, so there would be no need for the horizontal scrollbar and it get removed.

overflow-y: hidden;
would hide any thing on the y-axis that goes outside of the element, so there would be no need for the vertical scrollbar and it get removed.

overflow: hidden;
would remove both scrollbars

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.