diff options
| author | Mark Otto <[email protected]> | 2012-06-30 22:05:03 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-06-30 22:05:03 -0700 |
| commit | fb29075926b08ed57d1fc6f3ff3c013c5f87d2b3 (patch) | |
| tree | 2c2a114c7bd7f439ac5802e69d22266f4b12e924 | |
| parent | cd2d82150cc27c1f81d2394a22efbf2dbec0e7be (diff) | |
| parent | 3761d50c5a4bfd2b518cd6ab68ef3474e191ee6d (diff) | |
| download | bootstrap-fb29075926b08ed57d1fc6f3ff3c013c5f87d2b3.tar.xz bootstrap-fb29075926b08ed57d1fc6f3ff3c013c5f87d2b3.zip | |
Merge pull request #3976 from benvinegar/master
Fix Opera .clearfix bug when using contenteditable
| -rw-r--r-- | less/mixins.less | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/less/mixins.less b/less/mixins.less index 733dfd08b..6eaffa3e3 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -15,6 +15,9 @@ &:after { display: table; content: ""; + // Fixes Opera/contenteditable bug: + // http://nicolasgallagher.com/micro-clearfix-hack/#comment-36952 + line-height: 0; } &:after { clear: both; |
