Apple · watch · 2024
Apple Watch Series 10 (42mm) screen size
September 2024's smaller Series 10 grew the case from 41mm to 42mm and adopted the wide-angle LTPO3 OLED, giving a 374x446 panel. The 187x223 viewport at 2x means even the compact model now exceeds the old 45mm-class width, nudging the practical minimum wearable canvas upward.
- CSS viewport
- 187 × 223
- Physical pixels
- 374 × 446
- Pixel ratio
- 2x
- PPI
- 326
- Screen size
- 1.76"
Media queries
Target this device (portrait)
@media only screen and (device-width: 187px) and (device-height: 223px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 187px) {
/* styles */
}Viewport width and down
@media (max-width: 187px) {
/* styles */
}