Inside DIV elements there are 3 SPAN, 2 with some CSS CLASS and another WITHOUT CLASS. How to select CSS with selectors that has NO CLASS, I tried span: not (.AAA) but I can not put both classes because it does not work. Since classless SPANs can be in any position within the DIVs I have to select them in some way.
<div>
<span class="AAA">AAA</span>
<span class="BBB">BBB</span>
<span>CCC</span>
</div>
<div>
<span class="AAA">AAA</span>
<span>CCC</span>
<span class="BBB">BBB</span>
</div>