Google · phone · 2023
Pixel Fold screen size
Google's first foldable from 2023; this entry covers the 5.8-inch outer cover screen. Its wide 17.4:9 aspect yields a short 412x797 viewport at 2.625 — expect noticeably less vertical room than a normal phone, and remember the inner 7.6-inch screen jumps to a tablet-like width when unfolded.
- CSS viewport
- 412 × 797
- Physical pixels
- 1080 × 2092
- Pixel ratio
- 2.625x
- PPI
- 408
- Screen size
- 5.8"
Media queries
Target this device (portrait)
@media only screen and (device-width: 412px) and (device-height: 797px) 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 */
}