DISPLAY TOOL
What is My Screen Resolution?
See your full screen dimensions, browser viewport, pixel density, and color information.
—
Screen
Physical display area
DISPLAY SPECIFICATIONS
Related Tools
Understanding Pixels, Screen Size, and Viewports
Your display coordinates tell developers how much space is available to lay out website columns, text boxes, and media elements. However, modern displays represent screen size in different ways:
The Screen Resolution is the absolute grid count of hardware pixels present on your display (like 3840x2160 on a 4K screen). But if web browsers laid out pages using physical hardware pixels, text on high-density screens would be too tiny to read.
The Role of Device Pixel Ratio (DPR)
To make websites readable, browsers scale rendering using logical CSS Pixels. The relationship between physical hardware pixels and logical CSS pixels is defined by the Device Pixel Ratio (DPR).
For example, a device with a DPR of 2.0 uses a 2x2 grid (4 physical pixels) to draw a single logical CSS pixel. This creates sharp rendering and clean text curves. The Viewport represents the actual remaining layout window available for website code, subtracting toolbars, scrollbars, and system navigation trays.