Apple · phone · 2023
iPhone 15 Plus screen size
The big-screen non-Pro option for 2023, with a 6.7-inch OLED, Dynamic Island, and USB-C. Its 430x932 viewport is shared with the Pro Max models, so one large-phone breakpoint check covers the whole 6.7-inch class including safe-area insets for the Island.
- 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 */
}