IE6 + IE7 CSS problem with overflow: hidden; – position: relative; combo

It is a well-known bug in IE6 and IE7. To solve it, you need to add position:relative to the container. Since in your case body is the container, I’d suggest you add a div directly under the body and give it position:relative. It should solve your problem.

Leave a Comment