Notes on weird IE things:
IMAGES
Images saved in CKMY mode cannot be displayed in IE.
TRANSPARENCYS
img { opacity:0.4; filter:alpha(opacity=40); /* For IE8 and earlier */ }
POSITION ABSOLUTE: IE7 BUG
Beware of the "hasLayout bug" of IE. The relatively positioned parent element doesn't have layout, and hence IE forgets to redraw its children when it gets resized/repositioned.
The problem gets fixed if you add "overflow: hidden;" to the relatively positioned parent.
0 comments:
Post a Comment