According to Google's best practices for speed (look at their websites, and you know they are right!), you shouldn't use CSS descendant selectors. This is because it has to search the DOM a lot.
So if you want to change something with all the articles inside a section. Lets say:
<section id="others">
<article>
...
</article>
<article>
...
</article>
</section>
To modify all the articles inside this specific section, you shouldn't do:
#others article {
you should do
<section>
<article class="others">
...
</article>
<article class="others">
...
</article>
</section>
.others {
But if you still need to use all these classes and ID's, what's the point of these new HTML5 tags? I mean, if the best practices is to use classes and ID's anyway..
