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.
