For example, if you have:
<div class="article article--featured">
<h1 class="article__title"></h1>
</div>
Now I want to have a bigger h1 for the variant article--featured.
- Should I add the class
article__title--featured to h1 if I want to apply some styles to that element for the variation?
- Or should I add a class
article--featured__title?
- Or should I keep only the class
article__title and style it in CSS using a descendant selector .article--featured .article__title?
This is not clear from the spec.