forked from mirror/_s
Merge pull request #680 from iandunn/clearfix-max-width
Set a fixed table-layout in the clearfix to avoid max-width conflict
This commit is contained in:
commit
6f6de25568
|
@ -15,6 +15,7 @@
|
|||
@mixin clearfix() {
|
||||
content: "";
|
||||
display: table;
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
// Clear after (not all clearfix need this also)
|
||||
|
|
Reference in New Issue