iPhone Duo (unfolded) Screen Size & Viewport

CSS viewport 890 × 626 pixels at 3× device pixel ratio. The exact size browsers report on the iPhone Duo (unfolded).

Updated

The iPhone Duo (unfolded) viewport is 890 × 626 CSS pixels (626 × 890 rotated), with a device pixel ratio of 3 on a 2670 × 1878 pixel 7.6″ display. Estimated from physical resolution ÷ default DPR; the browser-reported value may differ by a few pixels.

CSS Viewport890 × 626 px
Rotated626 × 890 px
Physical Resolution2670 × 1878 px
Device Pixel Ratio
Aspect Ratio~13:9
Screen Size7.6″
ReleasedOctober 2026
CategoryFoldables

Open your site at the iPhone Duo (unfolded) viewport

Test your site at iPhone Duo (unfolded) (890 × 626)

Why this viewport matters

When a user visits your site on the iPhone Duo (unfolded), the browser reports window.innerWidth = 890 and window.devicePixelRatio = 3. Your CSS media queries match against the 890px CSS width, not the 2670 × 1878 physical pixel count of the panel.

At 890px it hits Tailwind md (768px) and Bootstrap md (768px). Rotated to 626px it moves to still no Tailwind breakpoint, so check both orientations.

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

/* iPhone Duo (unfolded): 890×626 CSS px, DPR 3 */
@media (max-width: 890px) {
  /* styles for this width and narrower */
}

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

iPhone Duo (unfolded) viewport FAQ

What is the viewport size of the iPhone Duo (unfolded)?

The iPhone Duo (unfolded) reports a CSS viewport of 890×626 pixels in portrait and 626×890 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 iPhone Duo (unfolded)?

The iPhone Duo (unfolded) uses a default device pixel ratio of 3. Each CSS pixel maps to 3×3 physical pixels on its 2670×1878 panel (inner display, opens in landscape).

Which CSS breakpoint does the iPhone Duo (unfolded) hit?

At 890px wide it matches Tailwind md (min-width 768px) and Bootstrap md (min-width 768px). Rotated to 626px it matches no Tailwind breakpoint.

How can I test my website at the iPhone Duo (unfolded) screen size without the device?

Open screensize.io, enter your URL and pick iPhone Duo (unfolded) (890×626). 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 →