Skip to content
1440px

iPhone 6 Plus Screen Size

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

CSS viewport · portrait
414 × 736 px

Native resolution 1080 × 1920 px at 3× · 401 PPI · 5.5″ · 9:16. Design at 414 × 736 and export assets at 3×.

iPhone 6 Plus display specifications
PropertyValue
CSS viewport (portrait)414 × 736 px
CSS viewport (landscape)736 × 414 px
Native resolution1080 × 1920 px
Device pixel ratio
Pixel density401 PPI
Screen diagonal5.5 in
Panel size2.69 × 4.79 in
Aspect ratio9:16
Total pixels2.07 MP
Released2014
Operating systemiOS
Safe area (top / bottom)20 / 0 px

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

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

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

Safe area on the iPhone 6 Plus

Home button, status bar only. Content placed inside the top 20 px or the bottom 0 px will sit under system UI unless you inset it.

Safe area insets
/* iPhone 6 Plus 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);    /* 20px */
  padding-bottom: env(safe-area-inset-bottom); /* 0px */
  padding-left:   env(safe-area-inset-left);
  padding-right:  env(safe-area-inset-right);
}

Compare with other iPhone models

iPhone 6 Plus compared with nearby iPhone models
DeviceCSS viewportNativeDPRPPIDiagonal
iPhone 6 Plus414 × 7361080 × 19204015.5″
iPhone 6375 × 667750 × 13343264.7″
iPhone 6s Plus414 × 7361080 × 19204015.5″
iPhone 6s375 × 667750 × 13343264.7″
iPhone 5s320 × 568640 × 11363264″
iPhone 5c320 × 568640 × 11363264″
iPhone 7 Plus414 × 7361080 × 19204015.5″
iPhone 7375 × 667750 × 13343264.7″
iPhone SE (1st gen)320 × 568640 × 11363264″

Questions about the iPhone 6 Plus screen

What is the screen size of the iPhone 6 Plus?

The iPhone 6 Plus has a 5.5-inch display. In CSS the viewport measures 414 × 736 px in portrait, and the panel itself has 1080 × 1920 physical pixels at 401 PPI.

What resolution should I design for on the iPhone 6 Plus?

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

What is the device pixel ratio of the iPhone 6 Plus?

The iPhone 6 Plus reports a device pixel ratio of 3. One CSS pixel therefore covers 9 device pixels. You can read it in JavaScript with window.devicePixelRatio.

Why does 414 × 3 not equal 1080?

Because the iPhone 6 Plus renders at 1242 × 2208 and then downsamples that frame to the 1080 × 1920 panel. Apple does this on the models where the panel resolution does not divide evenly into a whole scale factor. For your CSS and your asset exports, the 3× figure is the one that matters.

What are the safe area insets on the iPhone 6 Plus?

In portrait the safe area inset is 20 px at the top and 0 px at the bottom (Home button, status bar only). 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 6 Plus?

3 other devices share the 414 × 736 CSS viewport: iPhone 8 Plus, iPhone 7 Plus, iPhone 6s Plus. 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.