Apple · phone · 2022
iPhone 14 Plus screen size
Apple's 2022 return to a big-screen non-Pro phone: a 6.7-inch notched OLED at a lower price than the Pro Max. Its 428x926 viewport matches the 13 Pro Max, making it a large-phone test target without Dynamic Island considerations.
- CSS viewport
- 428 × 926
- Physical pixels
- 1284 × 2778
- Pixel ratio
- 3x
- PPI
- 458
- Screen size
- 6.7"
Media queries
Target this device (portrait)
@media only screen and (device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 428px) {
/* styles */
}Viewport width and down
@media (max-width: 428px) {
/* styles */
}