Back to Home
Blog

Screen Resolution

Check your screen resolution & display info

Your screen resolution and full display details, detected live in your browser. Retina and HiDPI displays are accounted for. Resize the window and the values update instantly. Nothing is uploaded.

Your screen resolution

— × —

Other information

Detecting your display…

For web developers (JavaScript)

screen.width × screen.height =
window.innerWidth × innerHeight =
window.devicePixelRatio =
screen.colorDepth =

CSS resolution (screen.width × height) is what layouts use. Multiply by the device pixel ratio to get the physical pixel count of the panel.

About the Screen Resolution Checker

Screen resolution sounds like a simple number, but most people can't actually recite theirs — and the figure printed on a monitor's box often isn't what a website sees anyway. This tool reads the values your browser and operating system actually report right now: the full screen resolution, the current browser viewport size, and the device pixel ratio that determines how sharp things look on high-density displays. It's built for the moments when you need an exact number fast — filing a bug report that asks for your display specs, checking whether a design mockup will fit before you build it, or figuring out why a site looks blurry or cramped on your particular setup.

Under the hood it pulls directly from the browser's screen and window APIs: screen width and height for the physical display, innerWidth/innerHeight for the viewport you're actually working in (which shrinks when you resize the window or the sidebar reduces available space), and the device pixel ratio to flag retina and other HiDPI screens where one CSS pixel is rendered using multiple physical pixels. From those readings it also derives the aspect ratio, so you can see at a glance whether you're on a standard 16:9 panel, an ultrawide, or something in between. Resize the browser window or move it to a different monitor and the numbers update immediately, which makes it easy to compare an external display against a laptop screen without digging through system settings.

One practical use: if a webpage looks noticeably softer or fuzzier than expected, a high device pixel ratio (2 or 3) paired with a small viewport often means images are being scaled up rather than served at native resolution — this tool surfaces both numbers side by side so you can spot that mismatch. Everything runs client-side in your browser; nothing about your display or session is uploaded anywhere, so it's safe to use even when troubleshooting on a work or client machine.

How to check your screen resolution and viewport size

Open the tool to instantly view your display's resolution, browser viewport, pixel ratio, and aspect ratio.

  1. 1

    Open the tool

    Load the What Is My Screen Resolution page in the browser and on the device you want to check — the values shown depend on the actual screen and window in use.

  2. 2

    Read the screen resolution

    Check the reported screen width and height, which reflect your physical display's native resolution as detected by the operating system.

  3. 3

    Check the viewport size

    Look at the browser viewport dimensions to see how much space is actually available inside the current browser window, separate from the full screen size.

  4. 4

    Review the device pixel ratio

    Note the device pixel ratio value to determine whether the display is a standard (1x) screen or a retina/HiDPI screen (2x, 3x, etc.).

  5. 5

    Compare the aspect ratio

    Use the calculated aspect ratio to confirm whether the display is standard widescreen, ultrawide, or another format.

  6. 6

    Resize to compare

    Resize the browser window or switch monitors to watch the viewport and resolution values update in real time for quick before/after comparisons.

Frequently Asked Questions

What is my screen resolution?

Your screen resolution is shown at the top of this page — it is the number of pixels your display uses horizontally by vertically, such as 1920 × 1080. It is detected live from your browser, so it is always accurate for the device you are using right now.

What is the difference between screen resolution and viewport size?

Screen resolution is the full size of your monitor or device display. Viewport size is just the area inside the browser window where web pages are drawn — it is smaller because it excludes the browser toolbar, tabs, and any open panels. This tool shows both.

Why is my physical resolution larger than my screen resolution?

On retina and HiDPI displays, each CSS pixel maps to multiple physical pixels. The device pixel ratio tells you how many. For example, a screen reported as 1280 × 800 with a pixel ratio of 2 has a physical panel of 2560 × 1600 pixels. Both values are shown here.

Does this work on phones and tablets?

Yes. The tool detects the resolution, pixel ratio, and orientation of whatever device you open it on, including phones and tablets. Rotate your device or resize the window and the values update instantly.