Generic · laptop · 2020
Generic 1080p laptop screen size
The workhorse of the modern laptop market: a 15.6-inch 1920x1080 IPS panel used at 100% scaling. Full HD is the most common desktop-class resolution in global web analytics, so a 1920x1080 CSS viewport is the default assumption for desktop design. Note many users run this same panel at 125% scaling, which shrinks the viewport to 1536x864.
- CSS viewport
- 1920 × 1080
- Physical pixels
- 1920 × 1080
- Pixel ratio
- 1x
- PPI
- 141
- Screen size
- 15.6"
Media queries
Target this device (portrait)
@media only screen and (device-width: 1920px) and (device-height: 1080px) and (-webkit-device-pixel-ratio: 1) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 1920px) {
/* styles */
}Viewport width and down
@media (max-width: 1920px) {
/* styles */
}