This is the HTML:
<div id="testBlue">
<span>hello</span>
<span id="testGreen" class="testGreen">hello2</span>
</div>
If I have set in CSS:
#testBlue span { color:Blue; }
.testGreen, #testGreen { color:Green; }
How can I override the general style in the second SPAN?
I have tried both id and class selectors but it doesnt override it.