Apple · tablet · 2024
iPad Air 11-inch (M2) screen size
May 2024 iPad Air refresh with the M2 chip and an 11-inch Liquid Retina LCD. The 820x1180 viewport is shared with the 10th-gen iPad, so one breakpoint check covers the mid-size iPad class; portrait width famously exceeds the common 768px tablet breakpoint.
- CSS viewport
- 820 × 1180
- Physical pixels
- 1640 × 2360
- Pixel ratio
- 2x
- PPI
- 264
- Screen size
- 11"
Ports
- usb c — USB 3 (10Gb/s)
Source: support.apple.com
Media queries
Target this device (portrait)
@media only screen and (device-width: 820px) and (device-height: 1180px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 820px) {
/* styles */
}Viewport width and down
@media (max-width: 820px) {
/* styles */
}