What I want to do :
div#test { color: green;}
div { color: blue; background-color:white;}
<div id="test">
<span>Text</span>
</div>
<div>
<span>Text2</span>
</div>
I want to apply only color:green(not background-color) to div tag having id="test". But as you can see here, div tag with id="test" also has background-color...
How can I avoid this?