Recently, I came across some coding that looks quite similar to the html snippet provided below.
<div class="a b">how_can_i_select_ab_only</div>
<div class="a b disabled">how_can_i_select_ab_and_disabled_only</div>
My goal is to individually select both of these elements.
The css selector .a.b currently selects both divs
<div class="a b">how_can_i_select_ab_only</div>
<div class="a b disabled">how_can_i_select_ab_and_disabled_only</div>
I am searching for a selector that targets only class a.b.disabled and only class a.b exclusively. What would be the correct syntax for this?