Samsung · phone · 2023
Galaxy S23+ screen size
The 2023 Plus paired the flagship internals with a 6.6-inch 1080p screen and bigger battery. Like every base-line Galaxy it presents 360x780 CSS pixels at 3x, keeping Samsung's narrow-viewport convention that predates the punch-hole era.
- CSS viewport
- 360 × 780
- Physical pixels
- 1080 × 2340
- Pixel ratio
- 3x
- PPI
- 393
- Screen size
- 6.6"
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 */
}