Apple · tablet · 2024
iPad Pro 13-inch (M4) screen size
Apple's largest tablet, launched May 2024 with a 13-inch Tandem OLED and the M4. The 1032x1376 viewport crosses 1024px in portrait, so it commonly receives desktop layouts; with Magic Keyboard attached it behaves much like a laptop for responsive testing.
- CSS viewport
- 1032 × 1376
- Physical pixels
- 2064 × 2752
- Pixel ratio
- 2x
- PPI
- 264
- Screen size
- 13"
Ports
- thunderbolt 3 — Thunderbolt / USB 4 (USB-C connector)
Source: support.apple.com
Media queries
Target this device (portrait)
@media only screen and (device-width: 1032px) and (device-height: 1376px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 1032px) {
/* styles */
}Viewport width and down
@media (max-width: 1032px) {
/* styles */
}