Generic · desktop · 2020

Generic 24" 1080p monitor screen size

The standard office desktop display: a 24-inch 1920x1080 IPS or VA monitor at native 100% scaling. Full HD desktops remain a huge slice of worldwide web traffic, especially in corporate environments, and 92 PPI means text and hairline borders render at true 1x — the baseline against which high-DPI rendering should be compared.

CSS viewport
1920 × 1080
Physical pixels
1920 × 1080
Pixel ratio
1x
PPI
92
Screen size
24"

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 */
}

Related devices