views:

97

answers:

5

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
A: 

Disabling scroll bars with css

overflow-x:hidden
overflow-y:hidden
gmcalab
A: 

In CSS you can do:

html, body {
overflow-y:hidden;
}
methodin
A: 

Please check this answer here in StackOverflow.

Hope that helps,

Ramon Araujo
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
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
For completeness' sake :)
mplungjan