ant-design/components/style/mixins/clearfix.less
2019-04-15 22:44:51 +08:00

14 lines
179 B
Plaintext

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