Reputation: 129
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.
Upvotes: 0
Views: 1332
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
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
Reputation: 111
It is because it's checking your browser window and not your actual screen size.
Upvotes: 2