Apple · laptop · 2023
MacBook Air 15-inch (M2) screen size
The first 15-inch MacBook Air, launched June 2023 with a 15.3-inch Liquid Retina display and fanless M2. Its 1440x932 default viewport is a common mid-size desktop breakpoint, wide enough for two-column app layouts but below full 1512px+ Pro widths.
- CSS viewport
- 1440 × 932
- Physical pixels
- 2880 × 1864
- Pixel ratio
- 2x
- PPI
- 224
- Screen size
- 15.3"
Media queries
Target this device (portrait)
@media only screen and (device-width: 1440px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 1440px) {
/* styles */
}Viewport width and down
@media (max-width: 1440px) {
/* styles */
}