I'm using SASS (.scss) for my current project.
Following example:
html
<div class="container desc">
<div class="hello>
Hello World
</div>
</div>
scss
.container {
background:red;
color:white;
.hello {
padding-left:50px;
}
}
This works great.
However I wonder how I can handle multiple classes while using nested styles. In the sample above I'm talking about this …
normal css
.container.desc {
background:blue;
}
In this case all div.container would normally be red but div.container.desc would be blue.
How can I nest this inside container with SASS?
Any ideas on that? Is that even possible?
Thank you in advance.