Skip to content
1440px

Dell XPS 16 (9640) Screen Size

CSS viewport, native resolution, pixel ratio and display scaling for the Dell XPS 16 (9640) — the numbers you need to design and build for it.

CSS viewport · portrait
1728 × 1080 px

Native resolution 3456 × 2160 px at 2× · 250 PPI · 16.3″ · 16:10. Design at 1728 × 1080 and export assets at 2×.

Dell XPS 16 (9640) display specifications
PropertyValue
CSS viewport (portrait)1728 × 1080 px
CSS viewport (landscape)1080 × 1728 px
Native resolution3456 × 2160 px
Device pixel ratio
Pixel density250 PPI
Screen diagonal16.3 in
Panel size13.82 × 8.64 in
Aspect ratio16:10
Total pixels7.46 MP
Released2024
Operating systemWindows

Among the 37 desktop and laptop displays on this site, the Dell XPS 16 (9640) has the 14th largest CSS viewport area. Its 1728 px width is 57 px above the 1671 px average for this category.

Viewport at each Windows display scale

Windows exposes the panel to the browser through the display-scale setting. Only one of these rows is the default; the others are one dropdown away, and users with 250 PPI in front of them do change it.

Dell XPS 16 (9640) — CSS viewport at every Windows display-scale step
Display scaleCSS viewportdevicePixelRatioNotes
100 %3456 × 2160More workspace, smaller text
125 %2765 × 17281.25×More workspace, smaller text
150 %2304 × 14401.5×More workspace, smaller text
175 %1975 × 12341.75×More workspace, smaller text
200 %1728 × 1080Windows default for this panel
225 %1536 × 9602.25×Larger text, less workspace
250 %1382 × 8642.5×Larger text, less workspace

Targeting the Dell XPS 16 (9640) in CSS

Device-specific media queries are brittle — a new model with the same width will not match. Use them for genuine per-device fixes only, and prefer width buckets for layout.

CSS media query
/* Target Dell XPS 16 (9640) specifically */
@media only screen
  and (device-width: 1728px)
  and (device-height: 1080px)
  and (-webkit-device-pixel-ratio: 2) {
  /* … */
}

/* More useful in practice — the width bucket it falls into */
@media (min-width: 1728px) { /* … */ }

Compare with other Windows Devices models

Dell XPS 16 (9640) compared with nearby Windows Devices models
DeviceCSS viewportNativeDPRPPIDiagonal
Dell XPS 16 (9640)1728 × 10803456 × 216025016.3″
Framework Laptop 161707 × 10672560 × 16001.5×18916″
Surface Laptop 7 15″1440 × 9602496 × 16641.73×20115″
Dell XPS 14 (9440)1600 × 10003200 × 200026014.5″
ThinkPad X1 Carbon Gen 121280 × 8001920 × 12001.5×16214″
HP Spectre x360 141280 × 8532880 × 19202.25×24714″
ASUS Zenbook 14 OLED1280 × 8002880 × 18002.25×24314″
Surface Laptop 7 13.8″1280 × 8532304 × 15361.8×20113.8″
Dell XPS 13 (9350)1280 × 8001920 × 12001.5×16913.4″

Questions about the Dell XPS 16 (9640) screen

What is the screen size of the Dell XPS 16 (9640)?

The Dell XPS 16 (9640) has a 16.3-inch display. In CSS the viewport measures 1728 × 1080 px in portrait, and the panel itself has 3456 × 2160 physical pixels at 250 PPI.

What resolution should I design for on the Dell XPS 16 (9640)?

Design at 1728 × 1080 and export assets at . That gives you 3456 × 2160 px images, which is exactly what the panel renders. Designing directly at 3456 × 2160 means every measurement is 2 times larger than the CSS values you will write.

What is the device pixel ratio of the Dell XPS 16 (9640)?

The Dell XPS 16 (9640) reports a device pixel ratio of 2. One CSS pixel therefore covers 4 device pixels. You can read it in JavaScript with window.devicePixelRatio.

Does the Dell XPS 16 (9640) always report 1728 px?

No — on Windows the CSS viewport is the panel divided by the display scale, and that is a user setting. 1728 × 1080 is what you get at the 200 % scale Windows recommends for this panel, which is what most units ship with. Change it in Settings → System → Display and every CSS pixel measurement changes with it. The table above lists the viewport at each scale step.

Related

Specifications from the manufacturer's published device data. Last verified 7 August 2026. CSS viewport values are the portrait window.innerWidth/innerHeight reported by the stock browser with no browser chrome. See methodology and sources.