aboutsummaryrefslogtreecommitdiff
path: root/docs/getting-started
diff options
context:
space:
mode:
authorPatrick H. Lauke <[email protected]>2015-11-13 16:17:57 +0000
committerPatrick H. Lauke <[email protected]>2015-11-13 16:17:57 +0000
commite897eb4e04f532ef46e06addddc4b180a9cda099 (patch)
treede4ab4264dd47a464089329c679ce80c2ba8c257 /docs/getting-started
parent3236a4df6971836111b768302b7d464fb457a0e0 (diff)
parent6c42c6dfa4d7ba59ba407eb29611620d07918eb4 (diff)
downloadbootstrap-e897eb4e04f532ef46e06addddc4b180a9cda099.tar.xz
bootstrap-e897eb4e04f532ef46e06addddc4b180a9cda099.zip
Merge pull request #18244 from patrickhlauke/v4-ios-viewport-tweak3
Add shrink-to-fit to responsive meta section
Diffstat (limited to 'docs/getting-started')
-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).