Apple · laptop · 2024
MacBook Air 13-inch (M3) screen size
March 2024 spec bump bringing the M3, Wi-Fi 6E, and dual external display support to the 13.6-inch Air. The screen and 1280x832 at 2x default viewport are unchanged from the M2 model, so it remains the baseline small-laptop width for responsive desktop testing.
- CSS viewport
- 1280 × 832
- Physical pixels
- 2560 × 1664
- Pixel ratio
- 2x
- PPI
- 224
- Screen size
- 13.6"
Media queries
Target this device (portrait)
@media only screen and (device-width: 1280px) and (device-height: 832px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 1280px) {
/* styles */
}Viewport width and down
@media (max-width: 1280px) {
/* styles */
}