I am struggling with resizing an image from 90px x 90px to 60px x 60px specifically in Internet Explorer. I have tried using the CSS style recommended on some websites:
.img { -ms-interpolation-mode: bicubic; }
Unfortunately, this did not work for me. Currently, I am using the following CSS which works perfectly fine in Firefox and Chrome:
.img {
horiz-align: center;
width: 60px;
height: 60px;
margin: 10px;
border: 1px rgb(218, 218, 218) solid;
background: #C4C4C4 no-repeat 0 0;
}