Hi I found a CSS writen like this #ABC { ......... } #ABC div.text{ ........... } 1- Is the second class affects any text contents in ABC. 2- I can't find a tutorial on the web that describe this, and it seems common thing to do, can you direct me for a tutorial?? Thanks
The attributes in the second selector will not affect the first selector's object. They will just modify the <div class="text"> object that falls under something with the id set to "ABC".