ToolJutsu
All tools
Miscellaneous & Browser API Tools

Screen Resolution Checker

Check your screen resolution and pixel ratio.

Reading your display details…

Screen resolution
Reading…
Available screen area
Reading…
Browser viewport size
Reading…
Device pixel ratio
Reading…
Effective physical resolution
Reading…
Colour depth
Reading…
Orientation
Reading…

Screen resolution, viewport size and pixel ratio — what is the difference?

  • Screen resolution is the size of your whole display, measured in CSS pixels. It does not change when you resize a browser window — only switching monitors or display settings changes it.
  • Viewport size is the slice of the screen your web page can draw into — the inside of this browser window. Make the window smaller and the viewport shrinks with it. This is the number responsive layouts react to.
  • Device pixel ratio (DPR) bridges CSS pixels and the panel’s real pixels. On a Retina or other high-density screen the DPR is 2 or 3, so each CSS pixel is drawn with several physical pixels — that is why the resolution number can look low on a screen that is visibly very sharp.

Every value above is read directly from your browser on this device. Nothing is uploaded, saved or logged.

Processed on your device. We never see your files.

How to use Screen Resolution Checker

What this tool does

The Screen Resolution Checker reads and displays the measurements your browser knows about your display and window. In one glance you get the full screen resolution, the available screen area, the current browser viewport size, the device pixel ratio, the colour depth, the orientation, and the effective physical resolution. The viewport-related numbers update live as you resize the window or rotate a device, so the page always reflects the current state rather than a stale snapshot.

It loads instantly with real values — there is no button to press and nothing to configure. Each value has a copy button, and a Copy all button produces a tidy plain-text report you can paste into a bug ticket, a support chat or a design note.

When you would use it

The most common reason is troubleshooting. A web page looks broken, an image is blurry, or a layout that works on a colleague’s machine misbehaves on yours — the first useful question is “what resolution and pixel ratio are you actually running?” This tool answers that in seconds, without digging through operating-system settings menus.

Designers and front-end developers use it to confirm the device pixel ratio before exporting assets: a 1× export looks soft on a 2× or 3× screen, so knowing the DPR tells you which resolution of an image to ship. QA testers paste the Copy all report into bug reports so a developer can reproduce the exact display conditions. People buying or selling a used laptop or monitor use it to verify that a screen really runs at the resolution advertised. And anyone setting up a screen share or recording can check the viewport size to be sure the captured area is the size they expect.

How to use it

  1. Open the page. All values are read and shown straight away — no setup.
  2. Read the cards. Each one shows a measurement with a short explanation of what it means.
  3. To watch values update, resize the browser window: the viewport size, device pixel ratio and orientation refresh live. On a phone or tablet, rotate the device and the orientation row flips.
  4. Click the small copy icon on any card to copy that single value, or use Copy all to copy the whole report as plain text.

How to read the results

Screen resolution is your display’s total size in CSS pixels. Available screen area subtracts space taken by the taskbar, dock or menu bar — it is the room a maximised browser window can occupy. Viewport size is the live size of the area inside this browser window. Device pixel ratio tells you how many physical pixels make one CSS pixel: 1 is a standard display, 2 or 3 is a high-density screen. Effective physical resolution multiplies the screen resolution by the DPR to estimate the panel’s real pixel grid. Colour depth is the bits used per pixel, normally 24-bit. Orientation reports landscape or portrait.

If a number looks wrong, the fix lives in your operating system’s display settings, not in the browser — this tool only reports. A blurry site on a high-DPR screen usually means the site shipped low-resolution images, which is the site’s problem, not yours.

Browser compatibility

Every value here comes from long-standing, well-supported web APIs, so the tool works in all modern browsers on desktop and mobile — Chrome, Edge, Firefox, Safari and Opera. The screen.orientation API is the only newer piece; where a browser lacks it, the tool falls back to comparing width and height and still reports landscape or portrait correctly.

To see what else your browser exposes, try the Browser Info Viewer. For battery details use the Battery Status Checker, to test your camera use the Webcam Test, and to check location access see the Geolocation tool.

Privacy

Everything in this tool happens inside your browser. The measurements are read locally and shown back to you; nothing is uploaded, saved or logged, and closing the tab discards it all.

Frequently asked questions

Why does my screen resolution look lower than the spec on the box?
The number this tool reports is in CSS pixels, not the physical pixels printed on a spec sheet. On a high-density display the two differ by the device pixel ratio (DPR). A 'Retina' laptop sold as 2880×1800 often reports 1440×900 in CSS pixels at a DPR of 2 — multiply the CSS resolution by the DPR and you get back the physical figure. The Effective physical resolution row does this calculation for you, so both numbers are correct; they just measure different things.
What is the difference between screen resolution and viewport size?
Screen resolution is the size of your whole display and does not change when you resize a browser window. Viewport size is the visible area inside this browser window or tab — the space your web page can actually draw into. Maximise the window and the viewport grows toward the available screen area; shrink the window and it gets smaller. Responsive web layouts respond to the viewport, not the screen, which is why the viewport number is the one that matters for testing how a site behaves.
Why do the viewport numbers change but the screen numbers stay the same?
The screen resolution and colour depth are properties of your monitor, so they only change if you switch displays or change your operating system's display settings. The viewport updates every time the browser window changes size, because it measures the window, not the monitor. This tool listens for resize and orientation-change events and refreshes the viewport, pixel ratio and orientation rows live, so you can drag the window edge and watch the numbers track it.
Will checking my resolution change any of my display settings?
No. This tool only reads values your browser already exposes — it cannot and does not alter your screen resolution, scaling, refresh rate or any other display setting. To change resolution you use your operating system's display settings (Windows: Settings, System, Display; macOS: System Settings, Displays). If a site looks wrong, this tool helps you diagnose the cause, but the fix is always made in the OS, not here.
Is my screen and device information private when I use this tool?
Yes. Every value shown is read from your browser with standard JavaScript running on your own device, and displayed straight back to you. Nothing is uploaded to a server, nothing is stored between visits and nothing is logged. Closing the tab discards everything. The Copy all button puts a plain-text report on your clipboard for you to paste where you choose — that action happens entirely on your machine.

Related tools