我尝试了以下 css,但在 iPad3 上没有帮助。只有四分之一的图像适合 iPad3。出了什么问题?
.titleIcon {
float: left;
background: url(/images/sprite.png);
background-position: 0px 0px;
width: 16px;
height: 16px;
}
@media
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and ( min--moz-device-pixel-ratio: 1.5),
only screen and ( -o-min-device-pixel-ratio: 3/2),
only screen and ( min-device-pixel-ratio: 1.5){
.titleIcon{
float: left;
background: url(/images/sprite-2x.png) no-repeat 0 0;
background-position: 0px 0px;
}
}