diff options
| author | Chris Rebert <[email protected]> | 2015-09-30 12:51:33 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-09-30 12:51:33 -0700 |
| commit | 8f627f6546f0892ea482b7ad49f05ec312e9c2d8 (patch) | |
| tree | 87dfad5a0e7fcd88b2efbee9af710697543c5e02 /docs/assets/css | |
| parent | 79cdd66bbb53b8b55c4151c0b425062519f5a2e8 (diff) | |
| parent | 700966253ab3c9fa66d0ac3844e79e88d62f75d8 (diff) | |
| download | bootstrap-8f627f6546f0892ea482b7ad49f05ec312e9c2d8.tar.xz bootstrap-8f627f6546f0892ea482b7ad49f05ec312e9c2d8.zip | |
Merge pull request #17742 from twbs/ie10-viewport-bug-workaround-css
Add CSS portion of IE10 viewport bug workaround to docs & examples
Diffstat (limited to 'docs/assets/css')
| -rw-r--r-- | docs/assets/css/ie10-viewport-bug-workaround.css | 15 |
1 files changed, 15 insertions, 0 deletions
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; } |
