Tutorial Not-Terrible Image Resizing in IE
img {
-ms-interpolation-mode: bicubic;
}
If you scale down an image with width and/or height attributes, it's going to look terrible in IE unless you use this.
img {
-ms-interpolation-mode: bicubic;
}
If you scale down an image with width and/or height attributes, it's going to look terrible in IE unless you use this.