I am using sass pre-compiler. Lets say we have this in html body
<h1 class="test"><h1>
sass:
@mixins test{
background-color: red;
}
xxxxx {
@include test();
}
My question is this how can I put background color in the h1 tag with a class name of “test” do I put the class name also in the xxxx. ?