Skip to content
1440px

iPad (7th gen) Screen Size

CSS viewport, native resolution, pixel ratio and pixel density for the iPad (7th gen) — the numbers you need to design and build for it.

CSS viewport · portrait
810 × 1080 px

Native resolution 1620 × 2160 px at 2× · 264 PPI · 10.2″ · 3:4. Design at 810 × 1080 and export assets at 2×.

iPad (7th gen) display specifications
PropertyValue
CSS viewport (portrait)810 × 1080 px
CSS viewport (landscape)1080 × 810 px
Native resolution1620 × 2160 px
Device pixel ratio
Pixel density264 PPI
Screen diagonal10.2 in
Panel size6.14 × 8.18 in
Aspect ratio3:4
Total pixels3.5 MP
Released2019
Operating systemiPadOS

Among the 43 tablets on this site, the iPad (7th gen) has the 35th largest CSS viewport area. Its 810 px width is 50 px below the 860 px average for this category.

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

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

Compare with other iPad models

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

Questions about the iPad (7th gen) screen

What is the screen size of the iPad (7th gen)?

The iPad (7th gen) has a 10.2-inch display. In CSS the viewport measures 810 × 1080 px in portrait, and the panel itself has 1620 × 2160 physical pixels at 264 PPI.

What resolution should I design for on the iPad (7th gen)?

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

What is the device pixel ratio of the iPad (7th gen)?

The iPad (7th gen) 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 (7th gen)?

2 other devices share the 810 × 1080 CSS viewport: iPad (9th gen), iPad (8th gen). 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.