不知何故,下面的放大精灵图像在 Internet Explorer 9 中没有显示为清晰的最近邻像素完美。在 FF 中完美像素完美/清晰。
然而,在 IE 中,它似乎变得双三次平滑,在这种情况下我不想要。知道这个 CSS 有什么问题吗?
.iconbig{ /* upscale the icons sprite images 200% and show them pixelperfect */
background-image:url(icons.gif);
background-repeat:no-repeat;
height:200%;
background-size: 26px auto;
-moz-background-size: 26px;
image-rendering:-moz-crisp-edges;
-ms-interpolation-mode:nearest-neighbor; /* <<== seems not working !!! */
}