Samsung · watch · 2024
Galaxy Watch Ultra screen size
Samsung's July 2024 answer to the Apple Watch Ultra puts a 3000-nit 1.5-inch circular 480x480 Super AMOLED in a titanium cushion case. The screen itself matches the Watch 7 44mm exactly — a 240x240 dp round canvas at 2x — so no separate layout work is needed beyond that size.
- CSS viewport
- 240 × 240
- Physical pixels
- 480 × 480
- Pixel ratio
- 2x
- PPI
- 327
- Screen size
- 1.5"
Media queries
Target this device (portrait)
@media only screen and (device-width: 240px) and (device-height: 240px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 240px) {
/* styles */
}Viewport width and down
@media (max-width: 240px) {
/* styles */
}