IE7 Shrink-to-fit Bug
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 (cli
Solution 1:
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
.
Solution 2:
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.
Post a Comment for "IE7 Shrink-to-fit Bug"