ant-design/components/style/mixins/clearfix.less
2018-05-21 21:52:15 +08:00

14 lines
176 B
Plaintext

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