diff options
| author | Mark Otto <[email protected]> | 2013-08-17 15:46:42 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-17 15:46:42 -0700 |
| commit | 663673438845b0bdb4f951ece7c6eabb2d51d065 (patch) | |
| tree | 735b57e08b991392cd5541bfe6b549c1fd356c9a /dist/css/bootstrap.css | |
| parent | 3fbc1fc555804d87fc2b06852d08e3d06b3a7821 (diff) | |
| download | bootstrap-663673438845b0bdb4f951ece7c6eabb2d51d065.tar.xz bootstrap-663673438845b0bdb4f951ece7c6eabb2d51d065.zip | |
Fixes #9752: clear floats in .panel-body
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index c290d1221..dd76c038c 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2701,6 +2701,26 @@ a.list-group-item:focus { padding: 15px; } +.panel-body:before, +.panel-body:after { + display: table; + content: " "; +} + +.panel-body:after { + clear: both; +} + +.panel-body:before, +.panel-body:after { + display: table; + content: " "; +} + +.panel-body:after { + clear: both; +} + .panel > .list-group { margin-bottom: 0; } |
