Apple · phone · 2023
iPhone 15 Pro screen size
Apple's first titanium iPhone, released September 2023 with a 6.1-inch 120Hz ProMotion OLED, Action button, and A17 Pro. It keeps the 393x852 viewport of the 14 Pro, so it behaves identically to the iPhone 15 in media queries while adding always-on display considerations.
- CSS viewport
- 393 × 852
- Physical pixels
- 1179 × 2556
- Pixel ratio
- 3x
- PPI
- 460
- Screen size
- 6.1"
Ports
- usb c — USB 3 (10Gb/s)
Source: support.apple.com
Media queries
Target this device (portrait)
@media only screen and (device-width: 393px) and (device-height: 852px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 393px) {
/* styles */
}Viewport width and down
@media (max-width: 393px) {
/* styles */
}