diff options
| -rw-r--r-- | getting-started.html | 2 | ||||
| -rw-r--r-- | less/responsive-utilities.less | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/getting-started.html b/getting-started.html index 07cdac3a0..80880f787 100644 --- a/getting-started.html +++ b/getting-started.html @@ -728,7 +728,7 @@ bootstrap/ <p>See <a href="http://stackoverflow.com/questions/6771258/whats-the-difference-if-meta-http-equiv-x-ua-compatible-content-ie-edge">this StackOverflow question</a> for more information.</p> <h3>Internet Explorer 10 in Windows 8 and Windows Phone 8</h3> - <p>Internet Explorer 10 doesn't differentiate <strong>device width</strong> from <storng>viewport width</storng>, and thus doesn't properly apply the media queries in Bootstrap's CSS. Normally you'd just add a quick snippet of CSS to fix this:</p> + <p>Internet Explorer 10 doesn't differentiate <strong>device width</strong> from <strong>viewport width</strong>, and thus doesn't properly apply the media queries in Bootstrap's CSS. Normally you'd just add a quick snippet of CSS to fix this:</p> {% highlight css %} @-ms-viewport { width: device-width; } {% endhighlight %} diff --git a/less/responsive-utilities.less b/less/responsive-utilities.less index a56c02887..6cacabec7 100644 --- a/less/responsive-utilities.less +++ b/less/responsive-utilities.less @@ -6,7 +6,7 @@ // IE10 in Windows (Phone) 8 // // Support for responsive views via media queries is kind of borked in IE10, for -// both Surface/desktop in split view and Windows Phone 8. This particular fix +// Surface/desktop in split view and for Windows Phone 8. This particular fix // must be accompanied by a snippet of JavaScript to sniff the user agent and // apply some condtional CSS to *only* the Surface/desktop Windows 8. Look at // our Getting Started page for more information on this bug. @@ -14,6 +14,7 @@ // For more information, see the following: // // Issue: https://github.com/twbs/bootstrap/issues/10497 +// Docs: http://getbootstrap.com/getting-started/#browsers // Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/ @-ms-viewport { |
