Samsung · phone · 2024
Galaxy S24+ screen size
For 2024 the Plus was upgraded to a QHD+ 1440x3120 panel, matching the Ultra. It now reports 384x832 at ratio 3.75 instead of the base model's 360px width — a rare mid-generation viewport change worth noting in device matrices.
- CSS viewport
- 384 × 832
- Physical pixels
- 1440 × 3120
- Pixel ratio
- 3.75x
- PPI
- 513
- Screen size
- 6.7"
Media queries
Target this device (portrait)
@media only screen and (device-width: 384px) and (device-height: 832px) 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 */
}