Generic · desktop · 2020

Generic 32" 4K monitor (150% scaling) screen size

The large-format 4K class: a 31.5-inch 3840x2160 panel at 140 PPI, typically run at 150% scaling for a 2560x1440 CSS viewport with pixelRatio 1.5. Popular with creative professionals and developers, it combines QHD layout space with fractional-DPI rendering — the case that exposes blurry 1x assets and half-pixel border artifacts.

CSS viewport
2560 × 1440
Physical pixels
3840 × 2160
Pixel ratio
1.5x
PPI
140
Screen size
31.5"

Media queries

Target this device (portrait)
@media only screen and (device-width: 2560px) and (device-height: 1440px) and (-webkit-device-pixel-ratio: 1.5) and (orientation: portrait) {
  /* styles */
}
Viewport width and up
@media (min-width: 2560px) {
  /* styles */
}
Viewport width and down
@media (max-width: 2560px) {
  /* styles */
}

Related devices