You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
217 B
19 lines
217 B
.clearfix {
|
|
*zoom: 1;
|
|
&:after {
|
|
content: '';
|
|
display: block;
|
|
clear: both;
|
|
height: 0;
|
|
}
|
|
}
|
|
|
|
.foo {
|
|
&:extend(.clearfix all);
|
|
color: red;
|
|
}
|
|
|
|
.bar {
|
|
&:extend(.clearfix all);
|
|
color: blue;
|
|
}
|
|
|