iview/styles/mixins/clearfix.less

16 lines
241 B
Text
Raw Normal View History

2016-09-09 14:29:19 +08:00
// mixins for clearfix
.clearfix() {
zoom: 1;
&:before,
&:after {
content: "";
display: table;
}
&:after {
clear: both;
visibility: hidden;
font-size: 0;
height: 0;
}
}