I'm currently working on a site, and somewhere in my mass of stylesheets, something is killing performance in IE. Are there any good CSS profilers out there? I'd like a tool that can pinpoint rules that are killing performance.

Before you ask, I've disabled JavaScript, opacity, and box-shadow/text-shadow rules. The page is still jumpy. :/ If I disable all CSS, it runs great.

I need a tool that can profile the page and report where the CSS bottlenecks are.

link|improve this question

50% accept rate
So it appears as if the rogue CSS rules are IE9 only. That's right, IE7/8 blow the doors off IE9 on this page. I double checked this result using a couple clean virtual machines. The only environment that lagged was IE9. :/ – Andy Edinborough Mar 2 '11 at 22:29
Another interesting point is that switching to IE7 or IE8 mode in IE9 eliminates the bottleneck. – Andy Edinborough Mar 2 '11 at 23:39
feedback

3 Answers

up vote 25 down vote accepted

So, I finally got around to writing a JavaScript function that indexed all of my CSS classes on the page and then individually toggled them, while scrolling the page. This immediately pin-pointed the errant class, and from there, I was able to determine errant property. Turns out that border-radius on an element that contains many children (e.g. a body level div) performs incredibly poorly on IE9.

I've started a github repo for my CSS stress test: https://github.com/andyedinborough/stress-css

From there, you can install a bookmarklet to easily run the test on any page.

link|improve this answer
Nice work! That also explains why switchingto IE7/IE8 makes it work faster. – Pekka Apr 24 '11 at 20:19
feedback

The Page Speed plugin from Google has a section that analyses your CSS and tells you about inefficient selectors, perhaps start there?

hth

Note: I know its a Firefox plugin, but should help optimize a bit :)

link|improve this answer
Thanks, I had forgotten about Page Speed. Even though it's not really what I'm looking for, it is helpful. – Andy Edinborough Mar 2 '11 at 21:06
1  
One thing you can do which will identify the problematic area (s) is comment half the css, test it, comment the next half. When you find the half that slows it down, repeat but in that half. Then you'll find the rules that are taking the time. Just another idea whilst im having a google for you :) – Stuart Blackler Mar 2 '11 at 21:21
The odd thing is I can't seem to narrow it down... almost like each rule is equally degrading performance. :/ – Andy Edinborough Mar 2 '11 at 23:34
feedback

Hmm, never heard of such a tool.

If you find none, things to look out for manually will include

  • Any filter statements (the classic alpha=opacity and others - IE has a number of very advanced graphical filters that are extremely expensive)

  • Huge elements (like thousands of pixels large)

  • Huge background images - maybe remove them all for a moment?

I would strongly suspect the first point - alpha transparencies can be a terrible rendering bottleneck, especially on older systems.

link|improve this answer
Thanks Pekka, but disabling opacity was actually one of the first things I did. Although it helped some, there's still a lag. – Andy Edinborough Mar 2 '11 at 20:51
@Andy yeah, you mentioned opacity already - overread that, sorry. – Pekka Mar 2 '11 at 20:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.