Google · phone · 2024
Pixel 9 Pro XL screen size
The 2024 XL carried forward the 8 Pro's display formula in a bigger 6.8-inch chassis. It reports 448x998 CSS pixels at 3x, one of the widest phone viewports on the market, so single-column mobile layouts can look sparse here.
- CSS viewport
- 448 × 998
- Physical pixels
- 1344 × 2992
- Pixel ratio
- 3x
- PPI
- 486
- Screen size
- 6.8"
Media queries
Target this device (portrait)
@media only screen and (device-width: 448px) and (device-height: 998px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 448px) {
/* styles */
}Viewport width and down
@media (max-width: 448px) {
/* styles */
}