Apple · watch · 2023
Apple Watch Series 9 (45mm) screen size
September 2023 Apple Watch with the S9 chip, double-tap gesture, and a brighter 2000-nit LTPO OLED. Web content reaching it via WKWebView sees a tiny 198x242 viewport at 2x, so email templates and shared links must survive extremely narrow single-column rendering.
- CSS viewport
- 198 × 242
- Physical pixels
- 396 × 484
- Pixel ratio
- 2x
- PPI
- 326
- Screen size
- 1.9"
Media queries
Target this device (portrait)
@media only screen and (device-width: 198px) and (device-height: 242px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 198px) {
/* styles */
}Viewport width and down
@media (max-width: 198px) {
/* styles */
}