我需要使用CSS应用溢出:隐藏到页面的正文,但是在Internet Explorer 7中不起作用。
我已经阅读了这个主题,但总是用div。
我如何使这项工作到Internet Explorer 7?我不介意使用jQuery。
我已经阅读了这个主题,但总是用div。
我如何使这项工作到Internet Explorer 7?我不介意使用jQuery。
解决方法
见:
http://www.artmov.com/dev/snippets/apply-overflow-x-overflow-y-to-body-in-ie7-ie6-84/:
Applying
overflow-x:hidden
oroverflow-y:hidden;
to the body element of the document will not work. Theoverflow-x:hidden
oroverflow-y:hidden
must be applied to thehtml
element,notbody
element.