【发布时间】:2013-12-18 20:42:58
【问题描述】:
我有一个覆盖并在滚动条仍然可见时禁用滚动(灰显),我使用了:
CSS
html.noscroll {
position: fixed;
overflow-y: scroll;
width: 100%;
}
它在 IE8 及更高版本中可以正常工作,但在 IE7 中滚动条仍然启用,我仍然可以滚动页面。
有人知道我该如何解决这个问题吗?
【问题讨论】:
-
尝试将 !important 添加到规则中以覆盖浏览器样式表规则;如果 IE7 有一条相反的重要规则,这应该可以工作。
标签: html css internet-explorer scroll internet-explorer-7