committer
committer

Reputation: 129

Chrome and Firefox viewport width 1519px and not 1920px

Why is my viewport width in Chrome and Firefox 1519px, with no zoom on a 1920px screen?

I'm not using any plugins for Firefox.

enter image description here

Upvotes: 0

Views: 1332

Answers (3)

Yoshi Varela
Yoshi Varela

Reputation: 26

The 1519px width is the default viewport setting (with vertical scrollbar) when using 1920px resolution in desktop browsers. As a user you can use the browser zoom.

If you're a front-end developer, you can change the zoom and get 1920px width:

body { 
    zoom: 0.8;
} 

Upvotes: 0

Martin
Martin

Reputation: 139

The reasons might be a few: 1) Your browser window is not maximized (full width) If you resize it, the viewport changes respectively 2) Your resolution is not set on the recommended one through the windows display settings

Upvotes: 0

Fredrich
Fredrich

Reputation: 111

It is because it's checking your browser window and not your actual screen size.

Upvotes: 2

Related Questions