From 0a78e7907d4082452e2bd41a0adf87ab3807675d Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 3 Sep 2013 15:49:03 -0700 Subject: fixes #10406: Update grid to use width on .container instead of max-width as IE8 improperly computes width --- dist/css/bootstrap.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dist/css/bootstrap.css') 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, -- cgit v1.2.3