ant-design/components/style/mixins/clearfix.less
2018-12-07 18:27:30 +08:00

14 lines
176 B
Plaintext

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