ant-design/components/style/mixins/clearfix.less

14 lines
179 B
Plaintext
Raw Normal View History

2015-06-09 18:22:52 +08:00
// mixins for clearfix
// ------------------------
.clearfix() {
zoom: 1;
&::before,
&::after {
2015-06-09 18:22:52 +08:00
display: table;
2019-04-15 22:44:51 +08:00
content: '';
2015-06-09 18:22:52 +08:00
}
&::after {
2015-06-09 18:22:52 +08:00
clear: both;
}
2017-01-11 21:45:09 +08:00
}