设置overflow-x:hidden之鼠标滚轮失效。

  在很多情况下我们可能需要对页面,或iframe等容器设置overflow-x:hidden这个属性,用来强制取消横向滚动条,但是设置完后,鼠标的滚轮却无法使用了。

  解决办法如下:

css 中:

html {overflow-x:hidden;}

改为:

html {overflow-x:hidden;overflow-y:auto;}


posted @ 2012-09-12 16:29  great wang  阅读(1024)  评论(0编辑  收藏  举报