Samsung Galaxy Z Flip 8 Screen Size & Viewport

CSS viewport 360 × 840 pixels at 3× device pixel ratio. The exact size browsers report on the Samsung Galaxy Z Flip 8.

Updated

The Samsung Galaxy Z Flip 8 viewport is 360 × 840 CSS pixels (840 × 360 rotated), with a device pixel ratio of 3 on a 1080 × 2520 pixel 6.9″ display. Estimated from physical resolution ÷ default DPR; the browser-reported value may differ by a few pixels.

CSS Viewport360 × 840 px
Rotated840 × 360 px
Physical Resolution1080 × 2520 px
Device Pixel Ratio
Aspect Ratio21:9
Screen Size6.9″
ReleasedAugust 2026
CategoryFoldables

Open your site at the Samsung Galaxy Z Flip 8 viewport

Test your site at Samsung Galaxy Z Flip 8 (360 × 840)

Why this viewport matters

When a user visits your site on the Samsung Galaxy Z Flip 8, the browser reports window.innerWidth = 360 and window.devicePixelRatio = 3. Your CSS media queries match against the 360px CSS width, not the 1080 × 2520 physical pixel count of the panel.

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

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

/* Samsung Galaxy Z Flip 8: 360×840 CSS px, DPR 3 */
@media (max-width: 360px) {
  /* styles for this width and narrower */
}

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

Samsung Galaxy Z Flip 8 viewport FAQ

What is the viewport size of the Samsung Galaxy Z Flip 8?

The Samsung Galaxy Z Flip 8 reports a CSS viewport of 360×840 pixels in portrait and 840×360 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 Samsung Galaxy Z Flip 8?

The Samsung Galaxy Z Flip 8 uses a default device pixel ratio of 3. Each CSS pixel maps to 3×3 physical pixels on its 1080×2520 panel (main display).

Which CSS breakpoint does the Samsung Galaxy Z Flip 8 hit?

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

How can I test my website at the Samsung Galaxy Z Flip 8 screen size without the device?

Open screensize.io, enter your URL and pick Samsung Galaxy Z Flip 8 (360×840). 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 →