어떻게 든 상향식 스프라이트 이미지는 인터넷 익스플로러 9에서 선명하고 가장 근접한 픽셀 주변 픽셀로 보이지 않습니다. FF에서는 픽셀이 완벽하게/선명하게 작동합니다.Pixelperfect Upscaled Sprite 배경 이미지가 IE에서 여전히 부드러운/바이 큐빅 이미지로 표시됩니까?
그러나 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 !!! */
}
'-ms-interpolation-mode : bicubic'이 변경 되나요? – atlavis
@atlavis : nothing : 같은 부드러운 bicubic "blurred"스프라이트 확대 – Sam
px 단위로'height :'와'width :'를 설정하면 작동합니까? 어쩌면 IE는 '높이 : 200 %'이상의 것을 필요로 할 것입니다. – atlavis