Dell · laptop · 2022
Dell XPS 13 screen size
Dell's iconic thin-and-light ultrabook. The base 13.4-inch 16:10 FHD+ panel (1920x1200 IPS) at Windows' recommended 150% scaling yields a 1280x800 CSS viewport — one of the smallest desktop-class viewports still shipping in volume. Test it to catch layouts that assume at least 1366px of width; the 16:10 ratio adds welcome vertical room.
- CSS viewport
- 1280 × 800
- Physical pixels
- 1920 × 1200
- Pixel ratio
- 1.5x
- PPI
- 169
- Screen size
- 13.4"
Ports
- 2× thunderbolt 4 — USB-C; the only ports — no headphone jack, adapters in box
Source: dell.com
Media queries
Target this device (portrait)
@media only screen and (device-width: 1280px) and (device-height: 800px) and (-webkit-device-pixel-ratio: 1.5) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 1280px) {
/* styles */
}Viewport width and down
@media (max-width: 1280px) {
/* styles */
}