/* iphone retina portrait, 4inch (iphone 5 and up) */
@media only screen and (-webkit-min-device-pixel-ratio : 2) and (device-aspect-ratio: 40/71) {
body {
background-color: red;
}
}
/* retina, iphone, portrait, 3.5inch (iphone 4) */
@media only screen and (-webkit-min-device-pixel-ratio : 2) and (device-aspect-ratio: 2/3) {
body {
background-color: yellow;
}
}
努力,但沒有工作,任何想法,我要iPhone 4之間的確切區分,iPhone 4S和iPhone 5的媒體查詢,iPhone 4S和iPhone 5
能否請你劃分4個4S分別 – user2727195
在iPhone 4和iPhone 4S具有相同的屏幕尺寸:http://www.everymac.com/systems/apple/iphone/specs/apple- iPhone-4S-specs.html。您可能必須使用Javascript來檢測設備並加載不同的CSS。 – Michio