Live Viewport
Monitor Stats
Technical Details
- Device Pixel Ratio (DPR) -
- Color Depth -
- Orientation -
- Aspect Ratio -
Instantly see your browser's viewport dimensions, screen resolution, and pixel density.
In web development and design, knowing the exact dimensions of your viewing area is critical. This tool provides a live, real-time analysis of your browser's Viewport (the actual visible webpage area) and your physical Screen Resolution.
Unlike simple static checkers, this tool reacts instantly as you resize your browser window, making it perfect for testing responsive breakpoints without opening Chrome DevTools. It also detects high-density displays (Retina) and calculates your device's aspect ratio.
@media (max-width: 768px)).Screen Resolution is the physical size of your monitor (e.g., 1920x1080). Viewport is the size of the browser window inside that screen. The viewport is almost always smaller because it excludes browser toolbars, scrollbars, and OS taskbars.
This is due to Display Scaling (DPR). Operating systems scale interfaces so text remains readable. A 4K monitor (3840x2160) with 200% scaling effectively behaves like a 1920x1080 screen in CSS pixels. This tool shows the "CSS Pixel" value because that is what websites use for layout.
DPR is the ratio between physical screen pixels and logical CSS pixels. Standard monitors have a DPR of 1. Retina displays (like iPhones and MacBooks) usually have a DPR of 2 or 3, meaning images need to be 2x or 3x larger to look sharp.
Yes! Zooming in (e.g., Ctrl +) effectively decreases your viewport width in CSS pixels because content takes up more space. Zooming out increases the viewport width. This tool updates instantly when you zoom.
While every site is different, common standards are:
• Mobile: < 576px
• Tablet: 768px - 991px
• Desktop: > 992px
• Wide: > 1200px