Skip to content
This repository has been archived by the owner on Sep 18, 2018. It is now read-only.
Herst edited this page Sep 8, 2018 · 2 revisions

Note: Below is the original page from the Bootlint documentation, some of the info here might not apply to Bootlint-NG!


W003

<head> is missing viewport <meta> tag that enables responsiveness

To enable responsive viewport sizing in most modern mobile browsers, the webpage needs to include an appropriate <meta name="viewport"> tag in its <head>, such as:

<meta name="viewport" content="width=device-width, initial-scale=1">

Bootlint didn't find such a <meta name="viewport"> tag in the webpage. Unless you're using Bootstrap in a non-responsive fashion, you should add the tag.

See also: Bootstrap's basic HTML template