CSS viewport 466 × 678 pixels at 3× device pixel ratio. The exact size browsers report on the iPhone Duo (folded).
The iPhone Duo (folded) viewport is 466 × 678 CSS pixels (678 × 466 rotated), with a device pixel ratio of 3 on a 1398 × 2034 pixel 5.4″ display. Estimated from physical resolution ÷ default DPR; the browser-reported value may differ by a few pixels.
Test your site at iPhone Duo (folded) (466 × 678)
When a user visits your site on the iPhone Duo (folded), the browser reports window.innerWidth = 466 and window.devicePixelRatio = 3. Your CSS media queries match against the 466px CSS width, not the 1398 × 2034 physical pixel count of the panel.
At 466px it hits no Tailwind breakpoint (base styles only) and no Bootstrap breakpoint. Rotated to 678px it moves to Tailwind sm, so check both orientations.
For sharp full-width images, serve a source at least 1398px wide (466 CSS px × 3 DPR) through srcset and let the browser pick it.
/* iPhone Duo (folded): 466×678 CSS px, DPR 3 */
@media (max-width: 466px) {
/* styles for this width and narrower */
}
@media (min-resolution: 3dppx) {
/* serve high-density assets */
}The iPhone Duo (folded) reports a CSS viewport of 466×678 pixels in portrait and 678×466 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.
The iPhone Duo (folded) uses a default device pixel ratio of 3. Each CSS pixel maps to 3×3 physical pixels on its 1398×2034 panel (outer display).
At 466px wide it matches no Tailwind breakpoint and no Bootstrap breakpoint, so only your base (mobile-first) styles apply. Rotated to 678px it matches Tailwind sm (min-width 640px).
Open screensize.io, enter your URL and pick iPhone Duo (folded) (466×678). 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.
See the full list of device viewport sizes →
Or browse common screen sizes by category →
Use screensize.io to preview your website at any of these resolutions instantly — no DevTools needed.
Open screensize.io →