The following markup exists
<meta name="viewport" content="width=400, initial-scale=1.0">
Choices
-
The virtual width of the browser is at least
400px
-
Media queries that use
(max-width: 300px)
are effective
-
The browser automatically zooms the page to 1 % when the page first loads
Answers
- TRUE
-
The virual width of the browser is at least
400px
-
The
viewport
allows you to set the virtual size of a screen
-
All media queries use the
viewport
, not the actual size of the
device
-
The
width=400
setting sets the minimum virtual width
- FALSE
-
Media queries that use
(max-width:300px)
are not effective
-
This is because the
width=400
viewport setting sets the minimum viewport width
of 400px
- FALSE
-
The browser does not automatically zoom the page to 1% when the page
loads
-
The
initial-scale=1.0
means 100%, not 1%
-
This value should
be a number between
0.1
and 1.0