Google · phone · 2023
Pixel 8 Pro screen size
The 2023 Pro moved to a flat 6.7-inch Super Actua LTPO panel. Unusually for a Pixel it reports a 448px CSS width at an even 3x ratio, wider than the 412px norm, so grids tuned to 412 gain visible extra room here; punch-hole is centered.
- CSS viewport
- 448 × 998
- Physical pixels
- 1344 × 2992
- Pixel ratio
- 3x
- PPI
- 489
- Screen size
- 6.7"
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 */
}