Can someone help me explain why:
#id .classname
is worse than:
#id element.classname
from a rendering/performance perspective?
|
Can someone help me explain why:
is worse than:
from a rendering/performance perspective? | |||
|
feedback
|
|
Because the DOM has special functions ( | |||||||||||||
feedback
|
|
simply because | |||||
feedback
|
|
I think because in the first example, the browser rendering engine should search for every element with class The second example would be faster because the engine looks just for every element Sorry for the word game, however this should be non influential from a performance perspective. | |||||
feedback
|
|
It's not. For the first selector, the browser checks if an element has the class, then it checks if any descendant has the id. For the second selector, the browser checks if an element has the class, then if checks if the element matches the tag name, then it checks if any descendant has the id. If the selectors have the same effect, the first selector is better, as the browser has to do fewer checks to match the rule. More information about efficient selectors: http://code.google.com/speed/page-speed/docs/rendering.html#UseEfficientCSSSelectors | ||||
|
feedback
|
|
Don't overoptimize your code, make it clear (and this is just about you and your habits, or your team standard) and see about performance later. When your css selector will be your bottleneck, then you'll have 1 000 engineers working for you. | |||||||||||||
feedback
|