1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-01 01:21:49 +02:00

fixes #10406: Update grid to use width on .container instead of max-width as IE8 improperly computes width

This commit is contained in:
Mark Otto
2013-09-03 15:49:03 -07:00
parent 5eead87ed7
commit 0a78e7907d
4 changed files with 12 additions and 12 deletions

View File

@@ -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,

File diff suppressed because one or more lines are too long