What Is My Screen Resolution?
Your display specs, instantly detected — no settings menu needed
Responsive Viewport Tester
Select a width preset to see how content reflows at different viewport widths. The size badge updates live.
Note: cross-origin iframes are blocked by most sites. This preview box simulates width only.
Design Breakpoints Reference
Common CSS breakpoints used by popular frameworks. Your current viewport width is highlighted.
| Name | Breakpoint Range | Common Use |
|---|
Common Screen Resolutions Reference
| Name / Device | Resolution | Aspect | DPR | Common Devices | Category |
|---|
Browser User Agent
What Does This All Mean?
Screen Resolution
Screen resolution is the total number of pixels your monitor can display, expressed as width × height (e.g. 1920×1080). It is a hardware property — it doesn't change unless you go into display settings and change it. Higher resolution = more pixels = sharper image and more content fits on screen.
Device Pixel Ratio (DPR)
DPR is the ratio of physical pixels to CSS (logical) pixels. A DPR of 2 means every CSS pixel is drawn using 2×2 = 4 physical pixels, making everything look sharper on "Retina" or "HiDPI" displays. Most modern smartphones have DPR ≥ 2; many MacBooks have DPR = 2; some Android phones have DPR = 3 or higher.
For web developers: use @media (-webkit-min-device-pixel-ratio: 2) or window.devicePixelRatio in JavaScript to serve higher-resolution images to HiDPI screens.
Viewport vs Screen Resolution
Your screen resolution is fixed (e.g. 1920×1080). Your viewport is the browser window's content area — it shrinks when you resize the browser, open browser chrome (DevTools, sidebars), or zoom in. CSS media queries respond to viewport size, not screen resolution. The viewport size shown here updates live as you resize your browser.
Color Depth
Color depth (in bits) determines how many distinct colors each pixel can display. 24-bit = 16.7 million colors (standard "True Color"). 30-bit = 1.07 billion colors ("Deep Color", found on professional displays). Most modern monitors are 24-bit or 30-bit.
How to Check Screen Resolution in System Settings
- Windows 11: Right-click desktop → Display settings → "Display resolution"
- macOS: Apple menu → System Settings → Displays
- Ubuntu/Linux: Settings → Displays
- Or just look at the top of this page — no settings menu needed.
Frequently Asked Questions
window.screen API. If you have a Retina/HiDPI display, the "Physical pixels" line shows the true hardware pixel count (screen resolution × DPR).