Exploring Chainable BEM Modifiers
I recently came across the concept of chainable BEM modifiers and I'm excited to incorporate this idea into my next project. However, upon checking getbem.com, I discovered that it's not recommended to use a modifier alone in BEM methodology.
Good
<div class="block block--mod">...</div>
<div class="block block--size-big
block--shadow-yes">...</div>
Bad
<div class="block--mod">...</div>
On the other hand, in the BEVM approach, it seems acceptable to use a modifier alone within an element. Can anyone provide any suggestions or insights on how to navigate this difference?