Microsoft · laptop · 2022
Surface Laptop 5 (15") screen size
The larger Surface Laptop 5 with a 15-inch 3:2 PixelSense touchscreen (2496x1664 at 201 PPI). At its default 150% scaling the CSS viewport is a roomy 1664x1109 — unusually tall for a laptop, so it exposes how layouts use extra vertical space. Popular in enterprise and education buys alongside its 13.5-inch sibling.
- CSS viewport
- 1664 × 1109
- Physical pixels
- 2496 × 1664
- Pixel ratio
- 1.5x
- PPI
- 201
- Screen size
- 15"
Media queries
Target this device (portrait)
@media only screen and (device-width: 1664px) and (device-height: 1109px) and (-webkit-device-pixel-ratio: 1.5) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 1664px) {
/* styles */
}Viewport width and down
@media (max-width: 1664px) {
/* styles */
}