Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm interested in way browsers apply CSS rules.

Though I know that there is no real difference, I'm wondering if it's more efficient to....

  • Constrict range of elements
a.external
/*instead of*/
.external
share|improve this question

1 Answer

up vote 7 down vote accepted

Surprisingly a.external is usually less efficient than .external. The reason is that browsers usually match selectors backwards, that is, first they find all elements with class external and then filter out all elements which are not links.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.