show/hide this revision's text 2 clarifying the answer as some people seemed to think it was off

EDIT: This is pointing out that there could well be a performance issue. Some people seemed to think I was some sort on way out there rant...


While I don't know for certain, but I'd like to give a word of warning! Consider the following identifier:

div#foo a.bar {}

I hear that jQuery for example, which utilizes css, traverses would in the above example traverse the DOM looking for divs first, then looks check to see if it's called they have an id of #foo (it will stop looking for more divs now since this should be a unique ID), foo, then loos for an A tag within before finally seeing if it's called classed .bar.

My concern with the * is that the browser may traverse the DOM looking for all ALL tags and then look for .bar, rather than inherently just looking for elements with a class the attribute of 'bar'. bar' - that's two sweeps of the DOM rather than just the one. Might be an extremely minimal difference, but if your syntax hits the airwaves, that's a few more solar panels we need to install.

show/hide this revision's text 1

While I don't know for certain, but I'd like to give a word of warning! Consider:

div#foo a.bar {}

I hear that jQuery for example, which utilizes css, traverses the DOM looking for divs, then looks to see if it's called #foo (it will stop looking for more divs now since this should be a unique ID), then loos for an A tag within before finally seeing if it's called .bar.

My concern with the * is that the browser may traverse the DOM looking for all tags and then look for .bar, rather than inherently just looking for elements with a class of 'bar'. Might be an extremely minimal difference, but if your syntax hits the airwaves, that's a few more solar panels we need to install.