我有一个 90 像素 x 90 像素的图像(它是一个 jpg 文件),但我不知道如何在 Internet Explorer 中将其设置为 60 像素 x 60 像素。我已经查看了一些网站,它们告诉我使用这种 css 样式:
.img { -ms-interpolation-mode: bicubic; }
但什么也没发生。这是我目前正在使用的 css,它在 fireforx 和 chrome 中运行良好:
.img {
horiz-align: center;
width: 60px;
height: 60px;
margin: 10px;
border: 1px rgb(218, 218, 218) solid;
background: #C4C4C4 no-repeat 0 0;
}