-
Notifications
You must be signed in to change notification settings - Fork 12.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Opera double scrollbar bug #183
Comments
That is because you also have height: 100% set on the html element, which is why you get the double scrollbars. Perhaps a comment is of the order, on that CSS rule. |
It might be that, html5boilerplate site also use overflow-y: scroll and when you put height: 100% there is no double scrollbar. |
Just realised that you have a height: 100% on the body as well (and an overflow-y: auto)! That is the cause of the issue. Nothing to do with boilerplate. I will revert my comment as well. |
That wasn't an unsolvable issue at all, but it was strange that it only happens in opera. |
But only Opera interprets it according to the spec :) "auto |
So opera is acting too good, lol Thanks for the insight, and sorry for putting this as an boilerplate issue (it really rocks). |
While leaving css rule:
html {overflow-y: scroll;}
it creates double scrollbar in opera 10.6 and 11 alpha, one that follows body tag and other that scrolls way down. When I set {overflow: auto;} it disappears.
Link is http://kkzapadnabacka.org (still work in progress)
The text was updated successfully, but these errors were encountered: