どういうわけか、以下のアップスケールされたスプライト画像は、InternetExplorer9では鮮明な最近傍のピクセルパーフェクトとして表示されません。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 !!! */
}