Google · phone · 2023
Pixel 8 screen size
Google's 2023 flagship shrank to a hand-friendly 6.2-inch Actua display with Tensor G3. The CSS viewport stays at the classic 412x915 with the fractional 2.625 ratio, keeping it interchangeable with Pixel 6 and 7 in responsive testing.
- CSS viewport
- 412 × 915
- Physical pixels
- 1080 × 2400
- Pixel ratio
- 2.625x
- PPI
- 428
- Screen size
- 6.2"
Media queries
Target this device (portrait)
@media only screen and (device-width: 412px) and (device-height: 915px) and (-webkit-device-pixel-ratio: 2.625) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 412px) {
/* styles */
}Viewport width and down
@media (max-width: 412px) {
/* styles */
}