Samsung · phone · 2022
Galaxy S22 Ultra screen size
The 2022 Ultra absorbed the Note line, adding the S Pen and a curved QHD+ display. Its 1440x3088 panel maps to a 384x824 viewport at an unusual 3.75 ratio, giving Ultra owners 24 more CSS pixels of width than base Galaxy users.
- CSS viewport
- 384 × 824
- Physical pixels
- 1440 × 3088
- Pixel ratio
- 3.75x
- PPI
- 500
- Screen size
- 6.8"
Media queries
Target this device (portrait)
@media only screen and (device-width: 384px) and (device-height: 824px) and (-webkit-device-pixel-ratio: 3.75) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 384px) {
/* styles */
}Viewport width and down
@media (max-width: 384px) {
/* styles */
}