Apple · watch · 2023
Apple Watch Ultra 2 screen size
Apple's rugged flagship watch, released September 2023 with a 3000-nit 1.92-inch OLED, titanium case, and S9 chip. The flat 205x251 viewport at 2x is the tallest watch canvas Apple ships, useful as the upper bound when checking how glanceable content scales on wearables.
- CSS viewport
- 205 × 251
- Physical pixels
- 410 × 502
- Pixel ratio
- 2x
- PPI
- 338
- Screen size
- 1.92"
Media queries
Target this device (portrait)
@media only screen and (device-width: 205px) and (device-height: 251px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 205px) {
/* styles */
}Viewport width and down
@media (max-width: 205px) {
/* styles */
}