Possible Duplicate:
Why do browsers match CSS selectors from right to left?
I've heard browsers read css selectors from right to left. So if we write like this;
#block1 a{text-decoration:none;}
browsers find first, all a tag then find block1 and performance drops a bit. Is it true?