Samsung · phone · 2023
Galaxy Z Fold 5 screen size
Samsung's 2023 book-style foldable; this entry covers the narrow 6.2-inch cover screen. Its 23.1:9 aspect produces an extreme 344x882 viewport — narrower than any mainstream phone — making it the toughest real-world stress test for minimum-width layouts. The unfolded inner screen jumps to a tablet-like near-square viewport.
- CSS viewport
- 344 × 882
- Physical pixels
- 904 × 2316
- Pixel ratio
- 2.625x
- PPI
- 402
- Screen size
- 6.2"
Media queries
Target this device (portrait)
@media only screen and (device-width: 344px) and (device-height: 882px) and (-webkit-device-pixel-ratio: 2.625) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 344px) {
/* styles */
}Viewport width and down
@media (max-width: 344px) {
/* styles */
}