diff options
| author | Mark Otto <[email protected]> | 2012-01-27 21:20:58 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-01-27 21:20:58 -0800 |
| commit | 78120edf728ede35f2338b42ae30fff1bd7f086e (patch) | |
| tree | f008e65932a39bda3d0c7e385e21a4b0c433226d /docs/assets/css/bootstrap.css | |
| parent | d0447e9aa54898ea46596e0e2077f33f0dbd1968 (diff) | |
| download | bootstrap-78120edf728ede35f2338b42ae30fff1bd7f086e.tar.xz bootstrap-78120edf728ede35f2338b42ae30fff1bd7f086e.zip | |
add clearfix to control-group for longer labels and any other unforeseen circumstances
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 0ad058814..c097c8f58 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -951,6 +951,14 @@ input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, selec } .form-horizontal .control-group { margin-bottom: 18px; + *zoom: 1; +} +.form-horizontal .control-group:before, .form-horizontal .control-group:after { + display: table; + content: ""; +} +.form-horizontal .control-group:after { + clear: both; } .form-horizontal .control-group > label { float: left; |
