Skip to content
1440px

iPad Air 13″ (M3) Screen Size

CSS viewport, native resolution, pixel ratio and safe area for the iPad Air 13″ (M3) — the numbers you need to design and build for it.

CSS viewport · portrait
1024 × 1366 px

Native resolution 2048 × 2732 px at 2× · 264 PPI · 13″ · 3:4. Design at 1024 × 1366 and export assets at 2×.

iPad Air 13″ (M3) display specifications
PropertyValue
CSS viewport (portrait)1024 × 1366 px
CSS viewport (landscape)1366 × 1024 px
Native resolution2048 × 2732 px
Device pixel ratio
Pixel density264 PPI
Screen diagonal13 in
Panel size7.76 × 10.35 in
Aspect ratio3:4
Total pixels5.6 MP
Released2025
Operating systemiPadOS
Safe area (top / bottom)24 / 20 px

Among the 43 tablets on this site, the iPad Air 13″ (M3) has the 4th largest CSS viewport area. Its 1024 px width is 164 px above the 860 px average for this category.

Targeting the iPad Air 13″ (M3) in CSS

Device-specific media queries are brittle — a new model with the same width will not match. Use them for genuine per-device fixes only, and prefer width buckets for layout.

CSS media query
/* Target iPad Air 13″ (M3) specifically */
@media only screen
  and (device-width: 1024px)
  and (device-height: 1366px)
  and (-webkit-device-pixel-ratio: 2) {
  /* … */
}

/* More useful in practice — the width bucket it falls into */
@media (min-width: 1024px) { /* … */ }

Safe area on the iPad Air 13″ (M3)

iPad 13″, home indicator. Content placed inside the top 24 px or the bottom 20 px will sit under system UI unless you inset it.

Safe area insets
/* iPad Air 13″ (M3) safe area — requires viewport-fit=cover */
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">

.app {
  padding-top:    env(safe-area-inset-top);    /* 24px */
  padding-bottom: env(safe-area-inset-bottom); /* 20px */
  padding-left:   env(safe-area-inset-left);
  padding-right:  env(safe-area-inset-right);
}

Compare with other iPad models

iPad Air 13″ (M3) compared with nearby iPad models
DeviceCSS viewportNativeDPRPPIDiagonal
iPad Air 13″ (M3)1024 × 13662048 × 273226413″
iPad Air 11″ (M3)820 × 11801640 × 236026411″
iPad (11th gen)820 × 11801640 × 236026411″
iPad Pro 13″ (M5)1032 × 13762064 × 275226413″
iPad Air 13″ (M4)1024 × 13662048 × 273226413″
iPad Pro 13″ (M4)1032 × 13762064 × 275226413″
iPad Air 13″ (M2)1024 × 13662048 × 273226413″
iPad Pro 11″ (M5)834 × 12101668 × 242026411″
iPad Air 11″ (M4)820 × 11801640 × 236026411″

Questions about the iPad Air 13″ (M3) screen

What is the screen size of the iPad Air 13″ (M3)?

The iPad Air 13″ (M3) has a 13-inch display. In CSS the viewport measures 1024 × 1366 px in portrait, and the panel itself has 2048 × 2732 physical pixels at 264 PPI.

What resolution should I design for on the iPad Air 13″ (M3)?

Design at 1024 × 1366 and export assets at . That gives you 2048 × 2732 px images, which is exactly what the panel renders. Designing directly at 2048 × 2732 means every measurement is 2 times larger than the CSS values you will write.

What is the device pixel ratio of the iPad Air 13″ (M3)?

The iPad Air 13″ (M3) reports a device pixel ratio of 2. One CSS pixel therefore covers 4 device pixels. You can read it in JavaScript with window.devicePixelRatio.

What are the safe area insets on the iPad Air 13″ (M3)?

In portrait the safe area inset is 24 px at the top and 20 px at the bottom (iPad 13″, home indicator). Use env(safe-area-inset-*) rather than hard-coding these — the values change per device and per orientation.

Which other devices have the same viewport as the iPad Air 13″ (M3)?

6 other devices share the 1024 × 1366 CSS viewport: iPad Air 13″ (M4), iPad Air 13″ (M2), iPad Pro 12.9″ (6th), iPad Pro 12.9″ (5th), iPad Pro 12.9″ (4th), iPad Pro 12.9″ (3rd). A layout that works on one works on all of them.

Related

Specifications from the manufacturer's published device data. Last verified 7 August 2026. CSS viewport values are the portrait window.innerWidth/innerHeight reported by the stock browser with no browser chrome. See methodology and sources.