diff --git a/Gruntfile.js b/Gruntfile.js
index 713feba3e..950af8579 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -244,6 +244,7 @@ module.exports = function (grunt) {
},
docs: {
src: [
+ 'docs/assets/css/ie10-viewport-bug-workaround.css',
'docs/assets/css/src/pygments-manni.css',
'docs/assets/css/src/docs.css'
],
diff --git a/docs/_includes/header.html b/docs/_includes/header.html
index 176f45fc0..6b53f00d8 100644
--- a/docs/_includes/header.html
+++ b/docs/_includes/header.html
@@ -32,6 +32,7 @@
{% if site.github %}
{% else %}
+
{% endif %}
diff --git a/docs/assets/css/ie10-viewport-bug-workaround.css b/docs/assets/css/ie10-viewport-bug-workaround.css
new file mode 100644
index 000000000..8b3803b48
--- /dev/null
+++ b/docs/assets/css/ie10-viewport-bug-workaround.css
@@ -0,0 +1,15 @@
+/*!
+ * IE10 viewport hack for Surface/desktop Windows 8 bug
+ * Copyright 2014-2015 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+
+/*
+ * See the Getting Started docs for more information:
+ * http://getbootstrap.com/getting-started/#support-ie10-width
+ */
+@-webkit-viewport { width: device-width; }
+@-moz-viewport { width: device-width; }
+@-ms-viewport { width: device-width; }
+@-o-viewport { width: device-width; }
+@viewport { width: device-width; }