Apple · phone · 2021
iPhone 13 mini screen size
The last of Apple's mini line, released September 2021 with a 5.4-inch Super Retina XDR OLED and A15 Bionic. Its 375px-wide viewport matches the SE and original iPhone X width, so it shares the tightest mainstream breakpoint bucket while still needing notch safe-area insets.
- CSS viewport
- 375 × 812
- Physical pixels
- 1125 × 2436
- Pixel ratio
- 3x
- PPI
- 476
- Screen size
- 5.4"
Media queries
Target this device (portrait)
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 375px) {
/* styles */
}Viewport width and down
@media (max-width: 375px) {
/* styles */
}