ToolsleAll tools →
Dev Tools

Screen resolution checker

Instantly check your screen resolution, viewport size, device pixel ratio, and browser dimensions. Updates live when you resize.

FAQPage Schema

Screen Resolution

Physical pixels of the display your window is on (updates when you resize, move between monitors, or return to this tab)

Viewport Size

0 × 0

Visible area in your browser window (updates on resize and viewport changes)

Device Pixel Ratio

CSS pixels to physical pixels ratio · 1× (Standard)

CSS Resolution

0 × 0

Resolution in CSS logical pixels (screen ÷ DPR)

Color Depth

24-bit (16.7 million colors)

From screen.colorDepth / pixelDepth

Orientation

Landscape

Updates when the device is rotated

Device info

Browser inner size
0 × 0
Same as viewport (document client area)
Available screen
0 × 0
Excludes OS taskbar / dock (screen.avail*)
Window outer size
0 × 0
Includes browser chrome (outerWidth / outerHeight)
Device type
Desktop
From screen width: <768 mobile, 768–1024 tablet, else desktop
Touch
navigator.maxTouchPoints
Operating system
Heuristic from userAgent
Browser
Heuristic from userAgent

Common resolution comparison

Your physical resolution vs common displays (pixel area: smaller / equal / larger).

ResolutionNamevs your screen
320 × 568iPhone SEYour screen is smaller
375 × 667iPhone 8Your screen is smaller
390 × 844iPhone 14Your screen is smaller
414 × 896iPhone 11Your screen is smaller
768 × 1024iPadYour screen is smaller
1024 × 768iPad LandscapeYour screen is smaller
1280 × 720HD (720p)Your screen is smaller
1280 × 800MacBook Air 13"Your screen is smaller
1366 × 768Most common laptopYour screen is smaller
1440 × 900MacBook Pro 13"Your screen is smaller
1536 × 864Common Windows laptopYour screen is smaller
1920 × 1080Full HD (1080p)Your screen is smaller
2560 × 1440QHD / 2KYour screen is smaller
2560 × 1600MacBook Pro 14"Your screen is smaller
3840 × 21604K UHDYour screen is smaller

Screen Resolution Checker — What Is My Screen Resolution?

Our free screen resolution checker instantly shows your screen resolution, browser viewport size, device pixel ratio, CSS logical resolution, color depth, and orientation — all automatically detected from your device. The viewport size updates live as you resize your browser window, making this useful for responsive web design testing.

Screen Resolution vs Viewport Size — What Is the Difference?

These two measurements are frequently confused but serve different purposes:

MeasurementWhat it measuresAPI usedTypical value (1080p laptop)
Screen ResolutionPhysical pixels of the display hardwarewindow.screen.width × window.screen.height1920 × 1080
Available Screen SizeScreen minus OS taskbar/dockwindow.screen.availWidth × availHeight1920 × 1040
Viewport SizeVisible browser content areawindow.innerWidth × window.innerHeight1440 × 900
CSS ResolutionLogical pixels for layout (÷ DPR)Calculated from screen + DPR1920 × 1080 (DPR 1) or 960 × 540 (DPR 2)
Window Outer SizeBrowser window including UI chromewindow.outerWidth × window.outerHeight1440 × 960

What Is Device Pixel Ratio?

Device pixel ratio (DPR) is the ratio of physical screen pixels to CSS logical pixels. It was introduced to handle high-density "Retina" displays that pack more pixels into the same physical space, allowing text and images to appear sharper without changing the layout dimensions that web developers work with.

On a MacBook Pro Retina display with DPR 2, a CSS element sized at 100×100 pixels actually occupies 200×200 physical pixels — four times as many pixels. This is why images on Retina displays need to be provided at 2× resolution (using srcset or CSS media queries) to look sharp.

DPRDisplay typeExample devicesPhysical pixels per CSS pixel
1.0Standard densityMost desktop monitors, older laptops1 physical per CSS pixel
1.25Slightly high DPISome Windows laptops1.25 physical per CSS pixel
1.5Medium high DPISome Android phones, Windows laptops1.5 physical per CSS pixel
2.0Retina / High DPIMacBook Pro, iPhone, iPad, many Android4 physical per CSS pixel (2×2)
3.0Super RetinaiPhone Pro models, high-end Android9 physical per CSS pixel (3×3)
4.0Ultra high DPISome Android flagship phones16 physical per CSS pixel (4×4)

Common Screen Resolutions Reference

Here are the most common screen resolutions across devices, from mobile to professional displays (aspect ratios are approximate):

ResolutionNameDevice categoryAspect ratio
320 × 568Mobile (small)16:9
375 × 667Mobile (iPhone 8)16:9
390 × 844Mobile (iPhone 14)19.5:9
414 × 896Mobile (iPhone 11)19.5:9
768 × 1024XGATablet (iPad)4:3
1280 × 720HD / 720pLaptop, TV16:9
1280 × 800WXGAMacBook Air 13"16:10
1366 × 768Most common laptop16:9
1440 × 900WXGA+MacBook Pro 13"16:10
1536 × 864Windows laptop16:9
1920 × 1080Full HD / 1080pDesktop, laptop, TV16:9
2560 × 1440QHD / 2KGaming monitor, iMac16:9
2560 × 1600MacBook Pro 14"16:10
3840 × 21604K UHDProfessional monitor, TV16:9
5120 × 28805KiMac 27", Studio Display16:9

Screen Resolution for Web Developers

Web developers use screen resolution and viewport data constantly for responsive design. The most important values are the CSS viewport width and the device pixel ratio, as these determine which CSS media queries trigger and how images should be served.

CSS Media Query Breakpoints

CSS media queries use the CSS viewport width — not the physical screen resolution — to apply responsive styles. Common breakpoints used by major CSS frameworks:

Breakpoint nameCSS widthTypical target devices
xs (extra small)< 576pxSmall mobile phones
sm (small)≥ 576pxMobile phones
md (medium)≥ 768pxTablets
lg (large)≥ 992pxSmall laptops, desktops
xl (extra large)≥ 1200pxDesktops, large laptops
xxl≥ 1400pxLarge desktops

Serving the Right Image Resolution

To serve sharp images on Retina displays, provide multiple image sizes using the HTML srcset attribute. For a 400px-wide image:

 <img src="image.jpg" srcset="image.jpg 1x, image@2x.jpg 2x, image@3x.jpg 3x" width="400" /> 

The browser automatically selects the appropriate resolution based on the device's DPR.

FAQ

Frequently Asked Questions

Instantly check your screen resolution, viewport size, device pixel ratio, and browser dimensions. Updates live when you resize. Open the tool in your browser on Toolsle.com — free, fast, and no download required.

Embed this tool on your site

Free to use on any website. Copy the code below and paste it into your page. A small “Powered by Toolsle” credit appears inside the embed.

↗ Preview embed · Full tool page

<iframe src="https://www.toolsle.com/embed/screen-resolution" width="100%" height="480" style="border:0;max-width:100%;" loading="lazy" title="Screen resolution checker — Toolsle"></iframe>