iview/src/styles/mixins/clearfix.less
梁灏 4b05d84ea2 Modify the directory structure
Modify the directory structure
2016-10-28 10:09:07 +08:00

16 lines
No EOL
241 B
Text
Executable file

// mixins for clearfix
.clearfix() {
zoom: 1;
&:before,
&:after {
content: "";
display: table;
}
&:after {
clear: both;
visibility: hidden;
font-size: 0;
height: 0;
}
}