OnePlus Pad screen size & viewport

The OnePlus Pad renders web pages at a CSS viewport of 960 × 1408 in portrait (1408 × 960 in landscape).

▶ Preview a website at 960×1408

What these numbers mean

960 × 1408 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 OnePlus Pad 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 OnePlus Pad */
@media (max-width: 960px) {
  .container { padding-inline: 16px; }
}

/* Exactly the OnePlus Pad in portrait */
@media (width: 960px) and (height: 1408px) { /* … */ }

Common things that break at 960px wide

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

Other OnePlus sizes

OnePlus 13412 × 919 OnePlus 12412 × 919 OnePlus 12R412 × 919 OnePlus 11412 × 919 OnePlus Open412 × 892 OnePlus Nord 4412 × 919 OnePlus Nord CE4412 × 892 OnePlus Nord 3412 × 892
Donate