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

fixes #9258: no more float bug with full-width grid columns by removing float on all .col-*-12 classes

This commit is contained in:
Mark Otto
2013-08-12 16:02:27 -07:00
parent fb8ae7e514
commit c558c035d7
3 changed files with 22 additions and 18 deletions

View File

@@ -844,8 +844,7 @@ pre code {
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
.col-xs-11 {
float: left;
}
@@ -911,8 +910,7 @@ pre code {
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12 {
.col-sm-11 {
float: left;
}
.col-sm-1 {
@@ -1066,8 +1064,7 @@ pre code {
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12 {
.col-md-11 {
float: left;
}
.col-md-1 {
@@ -1221,8 +1218,7 @@ pre code {
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
.col-lg-11 {
float: left;
}
.col-lg-1 {

File diff suppressed because one or more lines are too long