Apple · phone · 2022

iPhone SE (2022) screen size

Third-generation iPhone SE launched in March 2022, pairing the classic 4.7-inch Retina HD LCD and home button with the A15 Bionic. Its 375px viewport at only 2x is the smallest modern iPhone target, making it the go-to device for testing small-screen layouts and non-notched safe areas.

CSS viewport
375 × 667
Physical pixels
750 × 1334
Pixel ratio
2x
PPI
326
Screen size
4.7"

Ports

  • lightning

Source: support.apple.com

Media queries

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

Related devices