Can I disable vertical scroll bar in IE.
A:
If you want to disable the scroll bar for a form element, you can use the following code:
style="overflow-y:hidden"
If you want the actual browser to not have a scroll bar, you can apply the same style to the html element.
html {
overflow-y: hidden;
}
If you want to disable both scroll bars:
overflow: hidden
Robert Greiner
2010-09-27 18:31:39
A:
Please check this answer here in StackOverflow.
Hope that helps,
Ramon Araujo
2010-09-27 18:33:16
A:
And in case you want to use just html attributes:
<body scroll="no">
to disable scroll in IE completely
Let the down voting begin ;)
mplungjan
2010-09-27 18:38:59
It really does deserve a down vote, why would you suggest a non-standard html attribute when people have mentioned perfectly good solutions?
Juan Mendes
2010-09-27 18:52:11
For completeness' sake :)
mplungjan
2010-09-27 19:36:31