iview/src/styles/mixins/clearfix.less
2016-11-27 00:25:19 +08:00

14 lines
218 B
Text
Executable file

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