haha typing "ie7" and "bug" brings up a lot of related questions.

The entire page is an iframe onto another website (in this case, jquery.com just for demo purposes). I have an overlay "Hello World", and if you click on the X it minimizes it (click again it will open it).

It all works fine on IE8, Firefox, Chrome, etc...

However in IE7 it extends the white background to the entire width (see screenshot). I believe it's something to do with the shrink-to-fit or shrink-wrapping. enter image description here

link|improve this question

65% accept rate
IE Tester is not always consistent/trustworthy. It has plenty of bugs. Use 'real' IE7. – Tomas Voracek Mar 3 '11 at 0:51
is there an easy way to have multiple versions of IE running? – nute Mar 3 '11 at 0:55
Well, Microsoft provides a solution for this using Virtual PC images. See microsoft.com/downloads/en/… – Camilo Díaz Mar 3 '11 at 0:57
feedback

2 Answers

up vote 1 down vote accepted

Testing with IE8 compatibility mode, if on div.sidebar I remove background-color: #fff, it's fixed. Removing it makes no visible difference to IE8/Firefox.

To get rid of the page scrollbar on the right in IE7, you need to set overflow: hidden on html and/or body.

link|improve this answer
feedback

It is the use of width:inherit on your sidebar that ie7 doesnt like. If you can set a fixed width it should be fine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.