Screen Resolution Checker
Instantly see your screen resolution, browser viewport size, device pixel ratio, aspect ratio, orientation, and color depth. Values update live as you resize the browser window or rotate your device. Useful for web developers testing responsive designs, photographers checking display specs, and anyone troubleshooting a visual issue.
Screen vs Viewport vs Physical Pixels
Screen resolution is your full physical display size in CSS pixels \u2014 what most people mean by "my screen is 1920\u00D71080." Viewport is the usable area inside the browser window where web pages render, which is always smaller than the screen because browser UI (tabs, address bar, scrollbars) takes space. Physical pixels are the actual pixels on your hardware. On Retina or HiDPI displays, each CSS pixel is backed by 2\u00D72 or 3\u00D73 physical pixels \u2014 that's what device pixel ratio (DPR) measures. A viewport of 1024\u00D7768 at DPR 2 has 2048\u00D71536 physical pixels.
Common Use Cases
Filing a bug report where the developer needs to know the reporter's display details, and asking the user to dig through System Information is the slowest possible path. Designers confirming what device pixel ratio their main monitor actually reports, since "Retina" covers a wide range of physical densities. QA teams documenting test devices in a matrix and needing the exact viewport, screen, and DPR triple to identify each entry.
Web developers debugging why a media-query breakpoint hits differently on two monitors that "look the same." Anyone curious about the difference between their logical and physical pixel counts after macOS's "more space" scaling option or Windows' display-scale percentages. Browser extension and PWA authors verifying that their app reads viewport dimensions correctly across orientations on a real device, not just in DevTools emulation.
How We Compare
Operating-system info panes show screen resolution but typically not the browser viewport (which is what web layout actually uses) or the device pixel ratio. WhatIsMyScreenResolution.net and similar sites do, but show ads and may save the data they collect. Browser DevTools have the same info under "Sensors" or "Rendering," but only if you know where to look.
This tool surfaces screen dimensions, viewport dimensions, device pixel ratio, color depth, and orientation in one panel that updates live as you resize the window. Everything runs client-side, so the values reflect your actual session without telemetry. For testing how a page behaves at different viewport widths before resizing the browser by hand, see responsive breakpoint previewer.
Worth noting: the values shown reflect your current browser session at this moment. If you change display scaling, switch monitors, or rotate a tablet, the readings update live. The tool is read-only; it inspects what the browser already exposes via the screen and window APIs rather than measuring anything new.
Frequently Asked Questions
📖 Learn More
Related Guide Screen Resolution Checker Guide →Built by Derek Giordano · Part of Ultimate Design Tools