Samsung · phone · 2023
Galaxy S23 screen size
Samsung's 2023 base flagship ran Snapdragon 8 Gen 2 worldwide with a flat 6.1-inch panel. Its 360x780 viewport at 3x is the de facto minimum-width test target for Android — if a layout survives here it survives almost anywhere.
- 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 */
}