公告
财富商城
积分规则
提问
发文
2019-05-08 06:27发布
男人必须洒脱
Possible Duplicate: Disable browsers vertical and horizontal scrollbars
Can I disable vertical scroll bar in IE.
And in case you want to use just html attributes:
<body scroll="no">
to disable scroll in IE completely
Let the down voting begin ;)
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
In CSS you can do:
html, body { overflow-y:hidden; }
Disabling scroll bars with css
overflow-x:hidden overflow-y:hidden
最多设置5个标签!
And in case you want to use just html attributes:
to disable scroll in IE completely
Let the down voting begin ;)
If you want to disable the scroll bar for a form element, you can use the following code:
If you want the actual browser to not have a scroll bar, you can apply the same style to the html element.
If you want to disable both scroll bars:
In CSS you can do:
Disabling scroll bars with css