diff options
| author | Mark Otto <[email protected]> | 2013-09-03 15:49:03 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-09-03 15:49:03 -0700 |
| commit | 0a78e7907d4082452e2bd41a0adf87ab3807675d (patch) | |
| tree | 3af231d0b1f5f70ce745aad69bcae16c295770a9 /dist/css/bootstrap.css | |
| parent | 5eead87ed73b61352126339e86a96ba7166e2754 (diff) | |
| download | bootstrap-0a78e7907d4082452e2bd41a0adf87ab3807675d.tar.xz bootstrap-0a78e7907d4082452e2bd41a0adf87ab3807675d.zip | |
fixes #10406: Update grid to use width on .container instead of max-width as IE8 improperly computes width
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 53c76ec6a..9254efbf2 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -905,7 +905,7 @@ pre code { @media (min-width: 768px) { .container { - max-width: 750px; + width: 750px; } .col-sm-1, .col-sm-2, @@ -1059,7 +1059,7 @@ pre code { @media (min-width: 992px) { .container { - max-width: 970px; + width: 970px; } .col-md-1, .col-md-2, @@ -1222,7 +1222,7 @@ pre code { @media (min-width: 1200px) { .container { - max-width: 1170px; + width: 1170px; } .col-lg-1, .col-lg-2, |
