Apple · watch · 2024
Apple Watch Series 10 (46mm) screen size
September 2024 redesign with a thinner case and the largest, wide-angle LTPO3 OLED ever on an Apple Watch. Its 208x248 CSS viewport is the biggest mainstream watch canvas, but content should still be designed mobile-first and tested for readability at 2x on a wrist-size screen.
- CSS viewport
- 208 × 248
- Physical pixels
- 416 × 496
- Pixel ratio
- 2x
- PPI
- 326
- Screen size
- 1.96"
Media queries
Target this device (portrait)
@media only screen and (device-width: 208px) and (device-height: 248px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 208px) {
/* styles */
}Viewport width and down
@media (max-width: 208px) {
/* styles */
}