Generic · desktop · 2020
Generic 27" 5K monitor screen size
The 27-inch 5K class (5120x2880 at 218 PPI) exemplified by the Apple Studio Display and LG UltraFine 5K: run at exact 200% scaling for a 2560x1440 CSS viewport at pixelRatio 2. The gold standard for integer-scaled high-DPI desktop rendering — designers use it to check 2x assets and typography at QHD layout width with Retina sharpness.
- CSS viewport
- 2560 × 1440
- Physical pixels
- 5120 × 2880
- Pixel ratio
- 2x
- PPI
- 218
- Screen size
- 27"
Media queries
Target this device (portrait)
@media only screen and (device-width: 2560px) and (device-height: 1440px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 2560px) {
/* styles */
}Viewport width and down
@media (max-width: 2560px) {
/* styles */
}