Galaxy Z Fold 6 screen size & viewport

The Galaxy Z Fold 6 renders web pages at a CSS viewport of 968 × 848 in portrait (848 × 968 in landscape).

▶ Preview a website at 968×848

What these numbers mean

968 × 848 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 Galaxy Z Fold 6 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 tablet this size, a layout should already be at its multi-column / tablet breakpoint.

Targeting it in CSS

/* Styles for viewports up to the Galaxy Z Fold 6 */
@media (max-width: 968px) {
  .container { padding-inline: 16px; }
}

/* Exactly the Galaxy Z Fold 6 in portrait */
@media (width: 968px) and (height: 848px) { /* … */ }

Common things that break at 968px wide

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

Other Samsung sizes

Galaxy S25 Ultra412 × 915 Galaxy S25+412 × 900 Galaxy S24 Ultra412 × 915 Galaxy S24+412 × 900 Galaxy S23 Ultra412 × 915 Galaxy S23+412 × 892 Galaxy Z Flip 6360 × 780 Galaxy A55384 × 832
Donate