20 lines
217 B
Plaintext
20 lines
217 B
Plaintext
|
.clearfix {
|
||
|
*zoom: 1;
|
||
|
&:after {
|
||
|
content: '';
|
||
|
display: block;
|
||
|
clear: both;
|
||
|
height: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.foo {
|
||
|
&:extend(.clearfix all);
|
||
|
color: red;
|
||
|
}
|
||
|
|
||
|
.bar {
|
||
|
&:extend(.clearfix all);
|
||
|
color: blue;
|
||
|
}
|