MacBook Pro 16" screen size & viewport

The MacBook Pro 16" renders web pages at a CSS viewport of 1728 × 1117 in portrait (1117 × 1728 in landscape).

▶ Preview a website at 1728×1117

What these numbers mean

1728 × 1117 is the CSS viewport size — the coordinate space your layout, media queries and vw/vh units work in. It is not the hardware pixel count: the MacBook Pro 16" packs more physical pixels behind each CSS pixel (its device pixel ratio), which is why images meant for it should be exported at 2× or 3×.

For a desktop / laptop this size, a layout should already be at its multi-column / tablet breakpoint.

Targeting it in CSS

/* Styles for viewports up to the MacBook Pro 16" */
@media (max-width: 1728px) {
  .container { padding-inline: 16px; }
}

/* Exactly the MacBook Pro 16" in portrait */
@media (width: 1728px) and (height: 1117px) { /* … */ }

Common things that break at 1728px wide

Test it live: open ViewOnPhone at 1728×1117, paste your URL and toggle portrait / landscape.

Other Desktop & laptop sizes

MacBook Pro 14"1512 × 982 MacBook Air 15"1440 × 900 iMac 24"2240 × 1260 Surface Pro 111440 × 960 Surface Laptop 71504 × 1000 Dell XPS 151920 × 1200 HP Spectre x3601920 × 1080 Laptop HD 768p1366 × 768
Donate