I need the rules to apply to this element:
<div class="a b"/>
And not this one:
<div class="a b c"/>
I need the rules to apply to this element:
<div class="a b"/>
And not this one:
<div class="a b c"/>
Try this one. It will apply only on where the class name matches.
div[class*="ab"]{
/* Write your style that you want to apply */
}