Applying overflow-x:hidden or overflow-y:hidden; to the body element of the document will not work.
The overflow-x:hidden or overflow-y:hidden must be applied to the html element, not body element.
html { overflow:auto; overflow-x:hidden; }
* More on this solution is also on MSDN.
Looking for more? See all posts on the blog.
