Skip to content
1440px

Pro Display XDR Screen Size

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

CSS viewport · portrait
3008 × 1692 px

Native resolution 6016 × 3384 px at 2× · 218 PPI · 32″ · 16:9. Design at 3008 × 1692 and export assets at 2×.

Pro Display XDR display specifications
PropertyValue
CSS viewport (portrait)3008 × 1692 px
CSS viewport (landscape)1692 × 3008 px
Native resolution6016 × 3384 px
Device pixel ratio
Pixel density218 PPI
Screen diagonal32 in
Panel size27.6 × 15.52 in
Aspect ratio16:9
Total pixels20.36 MP
Released2019
Operating systemmacOS

Among the 37 desktop and laptop displays on this site, the Pro Display XDR has the 1st largest CSS viewport area. Its 3008 px width is 1337 px above the 1671 px average for this category.

Targeting the Pro Display XDR 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 Pro Display XDR specifically */
@media only screen
  and (device-width: 3008px)
  and (device-height: 1692px)
  and (-webkit-device-pixel-ratio: 2) {
  /* … */
}

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

Compare with other Mac & Displays models

Pro Display XDR compared with nearby Mac & Displays models
DeviceCSS viewportNativeDPRPPIDiagonal
Pro Display XDR3008 × 16926016 × 338421832″
MacBook Pro 16″ (2019)1792 × 11203072 × 192022616″
iMac 27″ 5K2560 × 14405120 × 288021827″
MacBook Pro 15″ (2018)1440 × 9002880 × 180022015.4″
MacBook Pro 13″ (M1)1440 × 9002560 × 160022713.3″
MacBook Air 13″ (M1)1440 × 9002560 × 160022713.3″
iMac 24″ (M1)2240 × 12604480 × 252021823.5″
MacBook Pro 16″ (M1)1728 × 11173456 × 223425416.2″
MacBook Pro 14″ (M1)1512 × 9823024 × 196425414.2″

Questions about the Pro Display XDR screen

What is the screen size of the Pro Display XDR?

The Pro Display XDR has a 32-inch display. In CSS the viewport measures 3008 × 1692 px in portrait, and the panel itself has 6016 × 3384 physical pixels at 218 PPI.

What resolution should I design for on the Pro Display XDR?

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

What is the device pixel ratio of the Pro Display XDR?

The Pro Display XDR reports a device pixel ratio of 2. One CSS pixel therefore covers 4 device pixels. You can read it in JavaScript with window.devicePixelRatio.

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.