Files
less.js/test/less/extend-clearfix.less
2013-01-05 15:29:35 +00:00

20 lines
190 B
Plaintext

.clearfix {
*zoom: 1;
&:after {
content: '';
display: block;
clear: both;
height: 0;
}
}
.foo {
++.clearfix;
color: red;
}
.bar {
++.clearfix;
color: blue;
}