Apple · laptop · 2022
MacBook Air 13-inch (M2) screen size
July 2022 redesign that dropped the wedge for a flat chassis, adding a 13.6-inch Liquid Retina display with a notch. Its default 1280x832 logical resolution at 2x sits just above the common 1280px desktop breakpoint, making it a realistic minimum-width laptop test target.
- 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 */
}