inheritable styles css code example
Example 1: inherit css
span {
color: blue;
}
.extra span {
color: inherit;
}
Example 2: inherit styles
@mixin stuff {
color: red;
}
.foo {
@include stuff;
}
.bar {
@include stuff;
}
span {
color: blue;
}
.extra span {
color: inherit;
}
@mixin stuff {
color: red;
}
.foo {
@include stuff;
}
.bar {
@include stuff;
}