Generic · laptop · 2020
Generic 1080p laptop (125% scaling) screen size
The same 15.6-inch 1920x1080 panel as the standard 1080p laptop, but at Windows' recommended 125% scaling — producing the 1536x864 CSS viewport that consistently tops StatCounter's desktop resolution charts. Arguably the single most important desktop-class viewport to test: a huge share of Windows laptop traffic reports exactly these dimensions.
- CSS viewport
- 1536 × 864
- Physical pixels
- 1920 × 1080
- Pixel ratio
- 1.25x
- PPI
- 141
- Screen size
- 15.6"
Media queries
Target this device (portrait)
@media only screen and (device-width: 1536px) and (device-height: 864px) and (-webkit-device-pixel-ratio: 1.25) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 1536px) {
/* styles */
}Viewport width and down
@media (max-width: 1536px) {
/* styles */
}