Apple · phone · 2021

iPhone 13 screen size

Apple's September 2021 flagship with a 6.1-inch Super Retina XDR OLED, smaller notch, and A15 Bionic. Its 390x844 viewport at 3x defined the standard iPhone breakpoint for several generations and remains one of the most common real-world test targets in analytics.

CSS viewport
390 × 844
Physical pixels
1170 × 2532
Pixel ratio
3x
PPI
460
Screen size
6.1"

Media queries

Target this device (portrait)
@media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  /* styles */
}
Viewport width and up
@media (min-width: 390px) {
  /* styles */
}
Viewport width and down
@media (max-width: 390px) {
  /* styles */
}

Related devices