[SCREEN INSPECTOR]

Check Window Size

See the exact size of your web browser right now. Resizing this window will instantly update the dimensions in real-time.

Browser Window Size
--- × ---
Calculating...
CSS Breakpoint
---

The code boundary used by web designers to switch between phone, tablet, and desktop layouts.

Full Window Size
--- × ---

The total space your browser window occupies on the screen, including tabs and scrollbars.

Browser Zoom
---

Shows if the screen content has been zoomed in or out.

Width Coverage
---

What percentage of your screen width this browser window is currently using.

Website Size Rules (Breakpoints)
Breakpoint Name Viewport Width
Mobile / Default< 640px
Small (SM)≥ 640px
Medium (MD)≥ 768px
Large (LG)≥ 1024px
Extra Large (XL)≥ 1280px
2X Large (2XL)≥ 1536px
DEFAULT
< 640px
SM
≥ 640px
MD
≥ 768px
LG
≥ 1024px
XL
≥ 1280px
2XL
≥ 1536px

What is a Browser Viewport?

The browser viewport is the visible area of a web page on a display device. It determines how CSS layouts and media queries adapt to different screen sizes, measured in logical CSS pixels rather than physical hardware pixels.

  • Responsive Design: Viewport dimensions are essential for mobile-first web development.
  • Dynamic Sizing: Unlike fixed screen resolution, viewport size changes when you resize your browser window.
  • Zoom Impact: Adjusting browser zoom changes the number of logical pixels that fit into the viewport.

Frequently Asked Questions

Understand how browser zoom, media queries, and responsive grid layouts adapt to your window.

What is a browser viewport?

The browser viewport is the visible area of a web page on a display device. It determines how CSS layouts and media queries adapt to different screen sizes, measured in logical CSS pixels rather than physical hardware pixels.

Why does my viewport size change when I zoom in?

When you zoom in, the browser increases the scale of logical CSS pixels. As a result, fewer logical pixels fit inside the browser window, causing the reported viewport width and height to decrease.

How does viewport size relate to responsive design?

Responsive design uses CSS Media Queries that inspect the viewport size to trigger layout changes (breakpoints). Modern frameworks like Tailwind target breakpoints starting at 640px (sm) up to 1536px (2xl) to adapt layouts for mobile and desktop screens.

What is the standard viewport size for mobile devices?

While it varies, the most common mobile viewport widths are 360px to 430px. For example, modern iPhones typically report a viewport width between 390px and 430px, while older or smaller Android devices often use 360px.

How does a viewport checker online work?

A viewport checker online, like our tool above, runs a viewport check by reading the inner dimensions of your browser window using Javascript. It dynamically updates as you resize the window.

How do I change viewport size in Chrome?

To change viewport size in Viewport Chrome or other browsers, you can either resize the browser window manually by dragging the edges, or use the browser's Developer Tools (F12) to simulate specific mobile device viewports.