disable scroll bar in IE [duplicate]

2019-05-08 06:51发布

问题:

Possible Duplicate:
Disable browsers vertical and horizontal scrollbars

Can I disable vertical scroll bar in IE.

回答1:

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


回答2:

And in case you want to use just html attributes:

<body scroll="no">

to disable scroll in IE completely

Let the down voting begin ;)



回答3:

In CSS you can do:

html, body {
overflow-y:hidden;
}


回答4:

Disabling scroll bars with css

overflow-x:hidden
overflow-y:hidden