pixsy/node_modules/less/test/less-bom/extend-clearfix.less

20 lines
217 B
Plaintext
Raw Normal View History

2017-12-22 17:22:08 +00:00
.clearfix {
*zoom: 1;
&:after {
content: '';
display: block;
clear: both;
height: 0;
}
}
.foo {
&:extend(.clearfix all);
color: red;
}
.bar {
&:extend(.clearfix all);
color: blue;
}