What Is My Screen Resolution?
Check your screen resolution, viewport size, and pixel ratio
What Is Screen Resolution?
Screen resolution refers to the number of pixels your display can show, expressed as width × height. A 1920×1080 (Full HD) screen has 1,920 pixels across and 1,080 pixels down, for a total of about 2 million pixels. Higher resolution means more pixels packed into the same screen size, resulting in sharper text, crisper images, and more workspace.
Common resolutions include 1920×1080 (Full HD, the most popular desktop resolution), 2560×1440 (QHD/2K, popular for 27" monitors), 3840×2160 (4K UHD, increasingly common on larger displays), and 5120×2880 (5K, used on Apple Studio Display and iMac).
Device Pixel Ratio (DPR) Explained
Device pixel ratio is the relationship between physical pixels and CSS pixels. A DPR of 1 means each CSS pixel maps to exactly one physical pixel. A DPR of 2 (common on "Retina" displays) means each CSS pixel is rendered using a 2×2 grid of physical pixels — four times the detail. Apple's MacBook Pro has a DPR of 2, while some flagship phones have DPR values of 3 or even 4.
DPR matters for web developers because images need to be served at the appropriate resolution. A 200px-wide image looks crisp on a DPR-1 screen but blurry on a DPR-2 screen — you need a 400px-wide source image to look sharp. This is why responsive images and srcset attributes are important for modern web design. Check your monitor PPI to see your display's pixel density.
How to Change Your Screen Resolution
Windows: Right-click the desktop → Display settings → Display resolution. Choose from the available resolutions — your monitor's native resolution (marked "Recommended") will give the sharpest image. macOS: System Settings → Displays → choose a resolution option. The "Default" option is optimized for your display's DPR. Linux: Settings → Displays, or use xrandr from the terminal.
Always use your monitor's native resolution for the best image quality. Running at a non-native resolution causes scaling artifacts that make text and images look fuzzy. If the native resolution makes things too small, use display scaling (125%, 150%, 200%) instead of lowering the resolution.