Apple · phone · 2024
iPhone 16 Pro Max screen size
Apple's largest iPhone yet at 6.9 inches, launched September 2024 with an always-on ProMotion OLED and A18 Pro. The 440x956 viewport is the widest phone CSS size to date, a useful upper-bound check that phone layouts do not accidentally trigger tablet breakpoints.
- CSS viewport
- 440 × 956
- Physical pixels
- 1320 × 2868
- Pixel ratio
- 3x
- PPI
- 460
- Screen size
- 6.9"
Media queries
Target this device (portrait)
@media only screen and (device-width: 440px) and (device-height: 956px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 440px) {
/* styles */
}Viewport width and down
@media (max-width: 440px) {
/* styles */
}