aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick H. Lauke <[email protected]>2015-11-13 16:16:17 +0000
committerPatrick H. Lauke <[email protected]>2015-11-13 16:16:17 +0000
commit6c42c6dfa4d7ba59ba407eb29611620d07918eb4 (patch)
treede4ab4264dd47a464089329c679ce80c2ba8c257
parent3236a4df6971836111b768302b7d464fb457a0e0 (diff)
downloadbootstrap-6c42c6dfa4d7ba59ba407eb29611620d07918eb4.tar.xz
bootstrap-6c42c6dfa4d7ba59ba407eb29611620d07918eb4.zip
Add shrink-to-fit to responsive meta section
-rw-r--r--docs/getting-started/introduction.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/getting-started/introduction.md b/docs/getting-started/introduction.md
index 845d3c97c..6e9162c89 100644
--- a/docs/getting-started/introduction.md
+++ b/docs/getting-started/introduction.md
@@ -87,7 +87,7 @@ Bootstrap requires the use of the HTML5 doctype. Without it, you'll see some fun
Bootstrap is developed *mobile first*, a strategy in which we optimize code for mobile devices first and then scale up components as necessary using CSS media queries. To ensure proper rendering and touch zooming for all devices, **add the responsive viewport meta tag** to your `<head>`.
{% highlight html %}
-<meta name="viewport" content="width=device-width, initial-scale=1">
+<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
{% endhighlight %}
You can see an example of this in action in the [starter template](#starter-template).