disable scroll bar in IE [duplicate]

2019-05-08 06:27发布

Possible Duplicate:
Disable browsers vertical and horizontal scrollbars

Can I disable vertical scroll bar in IE.

4条回答
干净又极端
2楼-- · 2019-05-08 06:40

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楼-- · 2019-05-08 06:47

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
查看更多
老娘就宠你
4楼-- · 2019-05-08 06:57

In CSS you can do:

html, body {
overflow-y:hidden;
}
查看更多
倾城 Initia
5楼-- · 2019-05-08 07:02

Disabling scroll bars with css

overflow-x:hidden
overflow-y:hidden
查看更多
登录 后发表回答