Google Pixel 11 Pro Screen Size & Viewport

CSS viewport 410 × 914 pixels at 3.125× device pixel ratio. The exact size browsers report on the Google Pixel 11 Pro.

Updated

The Google Pixel 11 Pro viewport is 410 × 914 CSS pixels (914 × 410 rotated), with a device pixel ratio of 3.125 on a 1280 × 2856 pixel 6.3″ display. Estimated from physical resolution ÷ default DPR; the browser-reported value may differ by a few pixels.

CSS Viewport410 × 914 px
Rotated914 × 410 px
Physical Resolution1280 × 2856 px
Device Pixel Ratio3.125×
Aspect Ratio~20:9
Screen Size6.3″
ReleasedAugust 2026
CategoryAndroid Phones

Open your site at the Google Pixel 11 Pro viewport

Test your site at Google Pixel 11 Pro (410 × 914)

Why this viewport matters

When a user visits your site on the Google Pixel 11 Pro, the browser reports window.innerWidth = 410 and window.devicePixelRatio = 3.125. Your CSS media queries match against the 410px CSS width, not the 1280 × 2856 physical pixel count of the panel.

At 410px it hits no Tailwind breakpoint (base styles only) and no Bootstrap breakpoint. Rotated to 914px it moves to Tailwind md, so check both orientations.

For sharp full-width images, serve a source at least 1281px wide (410 CSS px × 3.125 DPR) through srcset and let the browser pick it.

/* Google Pixel 11 Pro: 410×914 CSS px, DPR 3.125 */
@media (max-width: 410px) {
  /* styles for this width and narrower */
}

@media (min-resolution: 3.125dppx) {
  /* serve high-density assets */
}

Google Pixel 11 Pro viewport FAQ

What is the viewport size of the Google Pixel 11 Pro?

The Google Pixel 11 Pro reports a CSS viewport of 410×914 pixels in portrait and 914×410 in landscape. This value is derived from the physical resolution divided by the default device pixel ratio. Browser toolbars reduce the visible height slightly, so window.innerHeight is usually smaller than the full screen height.

What is the device pixel ratio (DPR) of the Google Pixel 11 Pro?

The Google Pixel 11 Pro uses a default device pixel ratio of 3.125. Each CSS pixel maps to 3.125×3.125 physical pixels on its 1280×2856 panel.

Which CSS breakpoint does the Google Pixel 11 Pro hit?

At 410px wide it matches no Tailwind breakpoint and no Bootstrap breakpoint, so only your base (mobile-first) styles apply. Rotated to 914px it matches Tailwind md (min-width 768px).

How can I test my website at the Google Pixel 11 Pro screen size without the device?

Open screensize.io, enter your URL and pick Google Pixel 11 Pro (410×914). It opens your site in a real browser window at exactly that CSS viewport, so media queries, container queries and JavaScript resize logic behave as they would on the device. For touch behaviour and the real browser engine, confirm on hardware before shipping.

Test Screen Sizes Right Now

Use screensize.io to preview your website at any of these resolutions instantly — no DevTools needed.

Open screensize.io →