Answers for "inherit styles"

CSS
0

inherit styles

@mixin stuff {
  color: red;
}
.foo {
  @include stuff;
} 
.bar {
  @include stuff;
}
Posted by: Guest on May-25-2021

Browse Popular Code Answers by Language