Skip to content
1440px

Google Pixel 6 Pro Screen Size

CSS viewport, native resolution, pixel ratio and pixel density for the Google Pixel 6 Pro — the numbers you need to design and build for it.

CSS viewport · portrait
412 × 892 px

Native resolution 1440 × 3120 px at 3.5× · 512 PPI · 6.7″ · 9:19.5. Design at 412 × 892 and export assets at 3.5×.

Google Pixel 6 Pro display specifications
PropertyValue
CSS viewport (portrait)412 × 892 px
CSS viewport (landscape)892 × 412 px
Native resolution1440 × 3120 px
Device pixel ratio3.5×
Pixel density512 PPI
Screen diagonal6.7 in
Panel size2.81 × 6.09 in
Aspect ratio9:19.5
Total pixels4.49 MP
Released2021
Operating systemAndroid

Among the 130 phones on this site, the Google Pixel 6 Pro has the 48th largest CSS viewport area. Its 412 px width is 13 px above the 399 px average for this category.

Targeting the Google Pixel 6 Pro 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 Google Pixel 6 Pro specifically */
@media only screen
  and (device-width: 412px)
  and (device-height: 892px)
  and (-webkit-device-pixel-ratio: 3.5) {
  /* … */
}

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

Compare with other Android Phones models

Google Pixel 6 Pro compared with nearby Android Phones models
DeviceCSS viewportNativeDPRPPIDiagonal
Google Pixel 6 Pro412 × 8921440 × 31203.5×5126.7″
Samsung Galaxy S21+384 × 8541080 × 24002.81×3946.7″
Samsung Galaxy S21 Ultra480 × 10671440 × 32005156.8″
Samsung Galaxy A52360 × 8001080 × 24004056.5″
Google Pixel 6412 × 9151080 × 24002.625×4116.4″
Samsung Galaxy S21360 × 8001080 × 24004216.2″
Google Pixel 7 Pro412 × 8921440 × 31203.5×5126.7″
Samsung Galaxy S22 Ultra480 × 10291440 × 30885006.8″
Samsung Galaxy S22+384 × 8331080 × 23402.81×3906.6″

Questions about the Google Pixel 6 Pro screen

What is the screen size of the Google Pixel 6 Pro?

The Google Pixel 6 Pro has a 6.7-inch display. In CSS the viewport measures 412 × 892 px in portrait, and the panel itself has 1440 × 3120 physical pixels at 512 PPI.

What resolution should I design for on the Google Pixel 6 Pro?

Design at 412 × 892 and export assets at 3.5×. That gives you 1440 × 3120 px images, which is exactly what the panel renders. Designing directly at 1440 × 3120 means every measurement is 3.5 times larger than the CSS values you will write.

What is the device pixel ratio of the Google Pixel 6 Pro?

The Google Pixel 6 Pro reports a device pixel ratio of 3.5. One CSS pixel therefore covers 12.25 device pixels. You can read it in JavaScript with window.devicePixelRatio.

Which other devices have the same viewport as the Google Pixel 6 Pro?

1 other device shares the 412 × 892 CSS viewport: Google Pixel 7 Pro. 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.