@media screen: Viewport or Window size?

css

Solution

It refers to the width of the viewport:

http://www.w3.org/TR/css3-mediaqueries/#width

media query max-width relates to the view port size or the windows size?

Problem

Good Day I am getting somewhat confused, probably cause I haven't used media queries in a while: when using ``` @media screen and (max-width:1024px){ } ``` does it refer to the Viewport size(viewable part of the page) or the Window Size(including scrollbars etc) ? Thank you

Original source

Related problems