Samsung · phone · 2022
Galaxy S22 screen size
Samsung's compact 2022 flagship with a 6.1-inch Dynamic AMOLED panel. It reports the classic Samsung 360x780 viewport at an even 3x ratio — 360px remains the narrowest mainstream Android width, so it is the device to check for cramped layouts.
- CSS viewport
- 360 × 780
- Physical pixels
- 1080 × 2340
- Pixel ratio
- 3x
- PPI
- 425
- Screen size
- 6.1"
Media queries
Target this device (portrait)
@media only screen and (device-width: 360px) and (device-height: 780px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 360px) {
/* styles */
}Viewport width and down
@media (max-width: 360px) {
/* styles */
}