Skip to content
1440px

iPad Pro 11″ (1st gen) Screen Size

CSS viewport, native resolution, pixel ratio and safe area for the iPad Pro 11″ (1st gen) — the numbers you need to design and build for it.

CSS viewport · portrait
834 × 1194 px

Native resolution 1668 × 2388 px at 2× · 264 PPI · 11″ · 1:1.43. Design at 834 × 1194 and export assets at 2×.

iPad Pro 11″ (1st gen) display specifications
PropertyValue
CSS viewport (portrait)834 × 1194 px
CSS viewport (landscape)1194 × 834 px
Native resolution1668 × 2388 px
Device pixel ratio
Pixel density264 PPI
Screen diagonal11 in
Panel size6.32 × 9.05 in
Aspect ratio1:1.43 (exact 139:199)
Total pixels3.98 MP
Released2018
Operating systemiPadOS
Safe area (top / bottom)24 / 20 px

Among the 43 tablets on this site, the iPad Pro 11″ (1st gen) has the 23th largest CSS viewport area. Its 834 px width is 26 px below the 860 px average for this category.

Targeting the iPad Pro 11″ (1st 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 Pro 11″ (1st gen) specifically */
@media only screen
  and (device-width: 834px)
  and (device-height: 1194px)
  and (-webkit-device-pixel-ratio: 2) {
  /* … */
}

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

Safe area on the iPad Pro 11″ (1st gen)

iPad Pro 11″, 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 Pro 11″ (1st gen) 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 Pro 11″ (1st gen) compared with nearby iPad models
DeviceCSS viewportNativeDPRPPIDiagonal
iPad Pro 11″ (1st gen)834 × 11941668 × 238826411″
iPad (6th gen)768 × 10241536 × 20482649.7″
iPad Pro 12.9″ (3rd)1024 × 13662048 × 273226412.9″
iPad Air (3rd gen)834 × 11121668 × 222426410.5″
iPad Pro 10.5″834 × 11121668 × 222426410.5″
iPad (7th gen)810 × 10801620 × 216026410.2″
iPad (5th gen)768 × 10241536 × 20482649.7″
iPad mini (5th gen)768 × 10241536 × 20483267.9″
iPad Pro 11″ (2nd gen)834 × 11941668 × 238826411″

Questions about the iPad Pro 11″ (1st gen) screen

What is the screen size of the iPad Pro 11″ (1st gen)?

The iPad Pro 11″ (1st gen) has a 11-inch display. In CSS the viewport measures 834 × 1194 px in portrait, and the panel itself has 1668 × 2388 physical pixels at 264 PPI.

What resolution should I design for on the iPad Pro 11″ (1st gen)?

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

What is the device pixel ratio of the iPad Pro 11″ (1st gen)?

The iPad Pro 11″ (1st 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.

What are the safe area insets on the iPad Pro 11″ (1st gen)?

In portrait the safe area inset is 24 px at the top and 20 px at the bottom (iPad Pro 11″, 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 Pro 11″ (1st gen)?

3 other devices share the 834 × 1194 CSS viewport: iPad Pro 11″ (4th gen), iPad Pro 11″ (3rd gen), iPad Pro 11″ (2nd 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.