Skip to content
1440px

Apple Watch Ultra 3 Screen Size

CSS viewport, native resolution, pixel ratio and pixel density for the Apple Watch Ultra 3 — the numbers you need to design and build for it.

CSS viewport · portrait
211 × 257 px

Native resolution 422 × 514 px at 2× · 326 PPI · 2.04″ · 1:1.22. Design at 211 × 257 and export assets at 2×.

Apple Watch Ultra 3 display specifications
PropertyValue
CSS viewport (portrait)211 × 257 px
CSS viewport (landscape)257 × 211 px
Native resolution422 × 514 px
Device pixel ratio
Pixel density326 PPI
Screen diagonal2.04 in
Panel size1.29 × 1.58 in
Aspect ratio1:1.22 (exact 211:257)
Total pixels0.22 MP
Released2025
Operating systemwatchOS

Among the 15 watchs on this site, the Apple Watch Ultra 3 has the 1st largest CSS viewport area. Its 211 px width is 21 px above the 190 px average for this category.

Targeting the Apple Watch Ultra 3 in CSS

Device-specific media queries are brittle — a new model with the same width will not match. Use them for genuine per-device fixes only, and prefer width buckets for layout.

CSS media query
/* Target Apple Watch Ultra 3 specifically */
@media only screen
  and (device-width: 211px)
  and (device-height: 257px)
  and (-webkit-device-pixel-ratio: 2) {
  /* … */
}

/* More useful in practice — the width bucket it falls into */
@media (min-width: 211px) { /* … */ }

Compare with other Smartwatches models

Apple Watch Ultra 3 compared with nearby Smartwatches models
DeviceCSS viewportNativeDPRPPIDiagonal
Apple Watch Ultra 3211 × 257422 × 5143262.04″
Apple Watch Series 11 46mm208 × 248416 × 4963301.96″
Apple Watch Series 11 42mm187 × 223374 × 4463301.77″
Apple Watch Series 10 46mm208 × 248416 × 4963301.96″
Apple Watch Series 10 42mm187 × 223374 × 4463301.77″
Apple Watch Ultra 2205 × 251410 × 5023381.92″
Apple Watch Series 9 45mm198 × 242396 × 4843261.9″
Apple Watch Series 9 41mm176 × 215352 × 4303261.69″
Apple Watch Series 8 45mm198 × 242396 × 4843261.9″

Questions about the Apple Watch Ultra 3 screen

What is the screen size of the Apple Watch Ultra 3?

The Apple Watch Ultra 3 has a 2.04-inch display. In CSS the viewport measures 211 × 257 px in portrait, and the panel itself has 422 × 514 physical pixels at 326 PPI.

What resolution should I design for on the Apple Watch Ultra 3?

Design at 211 × 257 and export assets at . That gives you 422 × 514 px images, which is exactly what the panel renders. Designing directly at 422 × 514 means every measurement is 2 times larger than the CSS values you will write.

What is the device pixel ratio of the Apple Watch Ultra 3?

The Apple Watch Ultra 3 reports a device pixel ratio of 2. One CSS pixel therefore covers 4 device pixels. You can read it in JavaScript with window.devicePixelRatio.

Related

Specifications from the manufacturer's published device data. Last verified 7 August 2026. CSS viewport values are the portrait window.innerWidth/innerHeight reported by the stock browser with no browser chrome. See methodology and sources.