diff options
| author | Mark Otto <[email protected]> | 2013-08-12 16:02:27 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-12 16:02:27 -0700 |
| commit | c558c035d7eee68276c76246260913663029f1dc (patch) | |
| tree | b2c7b7e65769ed18085daf3219a19ea96022e7f1 /dist/css/bootstrap.css | |
| parent | fb8ae7e51499c93f5db1aae94c74dc845b884630 (diff) | |
| download | bootstrap-c558c035d7eee68276c76246260913663029f1dc.tar.xz bootstrap-c558c035d7eee68276c76246260913663029f1dc.zip | |
fixes #9258: no more float bug with full-width grid columns by removing float on all .col-*-12 classes
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 9834bc105..5c88d994e 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -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 { |
