Skip to content
1440px

iPhone 11 Screen Size

CSS viewport, native resolution, pixel ratio and safe area for the iPhone 11 — the numbers you need to design and build for it.

CSS viewport · portrait
414 × 896 px

Native resolution 828 × 1792 px at 2× · 326 PPI · 6.1″ · 9:19.5. Design at 414 × 896 and export assets at 2×.

iPhone 11 display specifications
PropertyValue
CSS viewport (portrait)414 × 896 px
CSS viewport (landscape)896 × 414 px
Native resolution828 × 1792 px
Device pixel ratio
Pixel density326 PPI
Screen diagonal6.1 in
Panel size2.54 × 5.5 in
Aspect ratio9:19.5
Total pixels1.48 MP
Released2019
Operating systemiOS
Safe area (top / bottom)48 / 34 px

Among the 130 phones on this site, the iPhone 11 has the 44th largest CSS viewport area. Its 414 px width is 15 px above the 399 px average for this category.

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

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

Safe area on the iPhone 11

Notch. Content placed inside the top 48 px or the bottom 34 px will sit under system UI unless you inset it.

Safe area insets
/* iPhone 11 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);    /* 48px */
  padding-bottom: env(safe-area-inset-bottom); /* 34px */
  padding-left:   env(safe-area-inset-left);
  padding-right:  env(safe-area-inset-right);
}

Compare with other iPhone models

iPhone 11 compared with nearby iPhone models
DeviceCSS viewportNativeDPRPPIDiagonal
iPhone 11414 × 896828 × 17923266.1″
iPhone 11 Pro375 × 8121125 × 24364585.85″
iPhone 11 Pro Max414 × 8961242 × 26884586.46″
iPhone 12 Pro390 × 8441170 × 25324606.06″
iPhone 12390 × 8441170 × 25324606.06″
iPhone XR414 × 896828 × 17923266.06″
iPhone XS375 × 8121125 × 24364585.85″
iPhone XS Max414 × 8961242 × 26884586.46″
iPhone 12 Pro Max428 × 9261284 × 27784586.68″

Questions about the iPhone 11 screen

What is the screen size of the iPhone 11?

The iPhone 11 has a 6.1-inch display. In CSS the viewport measures 414 × 896 px in portrait, and the panel itself has 828 × 1792 physical pixels at 326 PPI.

What resolution should I design for on the iPhone 11?

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

What is the device pixel ratio of the iPhone 11?

The iPhone 11 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 iPhone 11?

In portrait the safe area inset is 48 px at the top and 34 px at the bottom (Notch). 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 iPhone 11?

3 other devices share the 414 × 896 CSS viewport: iPhone 11 Pro Max, iPhone XR, iPhone XS Max. 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.