Screen resolution checker
Instantly see your screen resolution, the physical pixel count after the device pixel ratio, the available area excluding the taskbar, your browser viewport, aspect ratio and colour depth. It is useful for designers, QA testers and anyone reporting a display issue who needs the exact numbers.
How it works
The tool reads standard browser display properties — no measurement or upload is involved:
| Value | Source |
|---|---|
| CSS resolution | screen.width × screen.height |
| Device pixel ratio | window.devicePixelRatio |
| Physical resolution | CSS resolution × device pixel ratio |
| Available area | screen.availWidth × screen.availHeight |
| Viewport | window.innerWidth × window.innerHeight |
| Colour depth | screen.colorDepth |
The aspect ratio is the width-to-height ratio of the screen reduced to its simplest form. All values refresh live as you resize or move the window between monitors.
Example
A 14-inch Retina laptop reports a CSS resolution of 1512 × 982, a device pixel ratio of 2, and therefore a physical resolution of 3024 × 1964 — twice as many real pixels in each direction. A standard 1920 × 1080 monitor reports a ratio of 1 and a 16:9 aspect ratio.
Everything is read directly from your browser; nothing is uploaded.