Apple · phone · 2022
iPhone 14 Pro Max screen size
Apple's 2022 flagship with a 6.7-inch always-on ProMotion OLED and the Dynamic Island. The 430x932 viewport became the new large-iPhone standard, and the Island's taller status area means fixed-position headers should be verified against env(safe-area-inset-top).
- CSS viewport
- 430 × 932
- Physical pixels
- 1290 × 2796
- Pixel ratio
- 3x
- PPI
- 460
- Screen size
- 6.7"
Media queries
Target this device (portrait)
@media only screen and (device-width: 430px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 430px) {
/* styles */
}Viewport width and down
@media (max-width: 430px) {
/* styles */
}