To instruct the browser to use the default device width, you would use meta name=”viewport” content=”width=device-width”.
True or false: To instruct the browser to use the default device width, you would use [meta name=”viewport” content=”width=device-width”].
- False
- True

To instruct the browser to use the default device width, you would use meta name=”viewport” content=”width=device-width”.
Correct answer is:
- False
Explanation: Using the meta viewport value [width=device-width] instructs the page to match the screen’s width in device independent pixels. This allows the page to reflow content to match different screen sizes.
Read more here: https://developers.google.com/speed/docs/insights/ConfigureViewport
Leave a Comment