Apple · watch · 2022
Apple Watch SE 2nd gen (40mm) screen size
Apple's September 2022 budget watch reuses the Series 6-era 40mm Retina OLED without the always-on mode. Its 162x197 viewport at 2x is the smallest screen in the current Apple lineup, making it the worst-case canvas for glanceable text, notification previews, and email content on the wrist.
- CSS viewport
- 162 × 197
- Physical pixels
- 324 × 394
- Pixel ratio
- 2x
- PPI
- 326
- Screen size
- 1.57"
Media queries
Target this device (portrait)
@media only screen and (device-width: 162px) and (device-height: 197px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 162px) {
/* styles */
}Viewport width and down
@media (max-width: 162px) {
/* styles */
}