I need to apply the overflow:hidden
to the body of a page with CSS, but is doesn't work in Internet Explorer 7.
I've read about this topic but always with divs.
How can I make this work to Internet Explorer 7? I don't mind using jQuery.
See here: 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.