Mix Fold 4 screen size & viewport
The Mix Fold 4 renders web pages at a CSS viewport of 1024 × 848 in portrait (848 × 1024 in landscape).
▶ Preview a website at 1024×848What these numbers mean
1024 × 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 Mix Fold 4 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 Mix Fold 4 */
@media (max-width: 1024px) {
.container { padding-inline: 16px; }
}
/* Exactly the Mix Fold 4 in portrait */
@media (width: 1024px) and (height: 848px) { /* … */ }
Common things that break at 1024px wide
- Fixed-width elements wider than 992px (content minus typical padding) cause horizontal scroll.
- Tap targets under 44×44 CSS px are hard to hit.
- Sticky headers taller than ~15% of 848px eat too much of the screen.
- Text set below 16px triggers zoom-on-focus in form fields on iOS.
Test it live: open ViewOnPhone at 1024×848, paste your URL and toggle portrait / landscape.