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 trying to learn to write more efficient CSS, particularly as I'm working with a fairly complex site that needs to render fast.

I'm used to having a lot of this in my HTML/CSS (mainly because I like the readability):

.spotlight {}
.spotlight ul {}
.spotlight ul li {}
.spotlight ul li a {color: #333;}

<div class="spotlight">
  <ul>
    <li><a href="">link</a></li>
    <li><a href="">link</a></li>
    <li><a href="">link</a></li>
  </ul>
</div>

I now understand that browsers run the CSS rule matching process from right to left, meaning that the <a> element in the last CSS rule above would first match every link on the page, leading to performance loss.

So from what I gather, the browser-friendly solution would be to be more specific, and use, for example:

.spotlight {}
.spotlight-link {color: #333;}

    <div class="spotlight">
      <ul>
        <li><a class="spotlight-link" href="">link</a></li>
        <li><a class="spotlight-link" href="">link</a></li>
        <li><a class="spotlight-link" href="">link</a></li>
      </ul>
    </div>

(assuming I'm using inheritance where possible but often still need specific control over the last element down the tree)

What is causing me doubt is: doesn't all the extra HTML bloat from printing class names on elements throughout the page negate performance gains made from avoiding nested CSS child selectors? I'm used to trying to write less HTML and this sort of goes against it. Any insight would be appreciated.

share|improve this question
3  
The reasons (in practice) that descendant selectors are usually avoided is not performance, but CSS scope/maintenance (hard to really explain in a comment). Browsers are really fast at parsing CSS, I would seriously not worry so much about it. If you're really that worried about speed and not maintenance, you could use single character class names <-- not an endorsement. – Wesley Murch Dec 23 '12 at 18:44
1  
@Wesley Murch: "The reasons (in practice) that descendant selectors are usually avoided is not performance, but CSS scope/maintenance" Unfortunately, that's not what they'd like to have you think... – BoltClock Dec 23 '12 at 21:53
1  
"doesn't all the extra HTML bloat from printing class names on elements throughout the page negate performance gains made from avoiding nested CSS child selectors?" Exactly. There really is no sense in bloating all your HTTP requests for the sake of client-side performance. – BoltClock Dec 23 '12 at 21:56
Thanks for the comments. – Tom Dec 23 '12 at 22:03
@BoltClock: "The descendant selector is the most expensive selector in CSS... dreadfully expensive" Whatever truth there is to that seems negated by how microscopic the perceived difference really is. I'm not advocating its usage, but I gotta say it sounds like paranoia, and the stylesheet on that very page has several "bad" examples such as #nav-main #nav-sub-docs a or .footer .browserid-info h3:after. – Wesley Murch Dec 23 '12 at 22:05
show 3 more comments

1 Answer

up vote 6 down vote accepted

You have to weigh it up. Adding a class to every anchor is ridiculous, the extra bloat in the HTML would massively offset the rendering time saved (which would be 1/10,000th of a bee's leg). Not to mention how hard your code would be to maintain.

You just need to stop using unnecessarily expensive selectors, for example

.spotlight ul li a

Can be written as

.spotlight a

If you keep on specifying a single class on the same elements in your HTML (like your second example), you'd probably be better off using a tag selector instead.

You also have to weigh up your time vs the browsers time. How much is it going to cost in your time to save a few nanoseconds on each page load? In all honestly, it's not really worth it.

Also, making your CSS structure match your HTML structure negates the point of CSS - if the HTML changes, you need to change your CSS. So you always want your selectors to be as unspecific as possible.

But there is no right or wrong answer here.

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.