diff options
| author | Ben Vinegar <[email protected]> | 2012-06-25 17:35:42 -0700 |
|---|---|---|
| committer | Ben Vinegar <[email protected]> | 2012-06-25 17:35:42 -0700 |
| commit | 3761d50c5a4bfd2b518cd6ab68ef3474e191ee6d (patch) | |
| tree | b1993447374496d256ed8a985bd39e5ea01b05c8 | |
| parent | 857b8fb8be81178d14f59c126c1381b09aff7c0f (diff) | |
| download | bootstrap-3761d50c5a4bfd2b518cd6ab68ef3474e191ee6d.tar.xz bootstrap-3761d50c5a4bfd2b518cd6ab68ef3474e191ee6d.zip | |
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 c3b57ed14..9027fbcbf 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; |
