Dell XPS 15 screen size & viewport
The Dell XPS 15 renders web pages at a CSS viewport of 1920 × 1200 in portrait (1200 × 1920 in landscape).
▶ Preview a website at 1920×1200What these numbers mean
1920 × 1200 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 Dell XPS 15 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 desktop / laptop this size, a layout should already be at its multi-column / tablet breakpoint.
Targeting it in CSS
/* Styles for viewports up to the Dell XPS 15 */
@media (max-width: 1920px) {
.container { padding-inline: 16px; }
}
/* Exactly the Dell XPS 15 in portrait */
@media (width: 1920px) and (height: 1200px) { /* … */ }
Common things that break at 1920px wide
- Fixed-width elements wider than 1888px (content minus typical padding) cause horizontal scroll.
- Tap targets under 44×44 CSS px are hard to hit.
- Sticky headers taller than ~15% of 1200px 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 1920×1200, paste your URL and toggle portrait / landscape.