Skip to content
1440px

iPad Air 2 Screen Size

CSS viewport, native resolution, pixel ratio and pixel density for the iPad Air 2 — the numbers you need to design and build for it.

CSS viewport · portrait
768 × 1024 px

Native resolution 1536 × 2048 px at 2× · 264 PPI · 9.7″ · 3:4. Design at 768 × 1024 and export assets at 2×.

iPad Air 2 display specifications
PropertyValue
CSS viewport (portrait)768 × 1024 px
CSS viewport (landscape)1024 × 768 px
Native resolution1536 × 2048 px
Device pixel ratio
Pixel density264 PPI
Screen diagonal9.7 in
Panel size5.82 × 7.76 in
Aspect ratio3:4
Total pixels3.15 MP
Released2014
Operating systemiPadOS

Among the 43 tablets on this site, the iPad Air 2 has the 43th largest CSS viewport area. Its 768 px width is 92 px below the 860 px average for this category.

Targeting the iPad Air 2 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 2 specifically */
@media only screen
  and (device-width: 768px)
  and (device-height: 1024px)
  and (-webkit-device-pixel-ratio: 2) {
  /* … */
}

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

Compare with other iPad models

iPad Air 2 compared with nearby iPad models
DeviceCSS viewportNativeDPRPPIDiagonal
iPad Air 2768 × 10241536 × 20482649.7″
iPad mini (4th gen)768 × 10241536 × 20483267.9″
iPad Pro 9.7″768 × 10241536 × 20482649.7″
iPad (5th gen)768 × 10241536 × 20482649.7″
iPad Pro 10.5″834 × 11121668 × 222426410.5″
iPad (6th gen)768 × 10241536 × 20482649.7″
iPad Pro 11″ (1st gen)834 × 11941668 × 238826411″
iPad Pro 12.9″ (3rd)1024 × 13662048 × 273226412.9″
iPad (7th gen)810 × 10801620 × 216026410.2″

Questions about the iPad Air 2 screen

What is the screen size of the iPad Air 2?

The iPad Air 2 has a 9.7-inch display. In CSS the viewport measures 768 × 1024 px in portrait, and the panel itself has 1536 × 2048 physical pixels at 264 PPI.

What resolution should I design for on the iPad Air 2?

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

What is the device pixel ratio of the iPad Air 2?

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

Which other devices have the same viewport as the iPad Air 2?

5 other devices share the 768 × 1024 CSS viewport: iPad mini (5th gen), iPad mini (4th gen), iPad (6th gen), iPad (5th gen), iPad Pro 9.7″. 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.