W72crm_web-master/node_modules/less/test/less-bom/extend-clearfix.less

20 lines
217 B
Plaintext
Raw Normal View History

2025-05-27 11:25:53 +08:00
.clearfix {
*zoom: 1;
&:after {
content: '';
display: block;
clear: both;
height: 0;
}
}
.foo {
&:extend(.clearfix all);
color: red;
}
.bar {
&:extend(.clearfix all);
color: blue;
}