CSS Performance issues - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T16:53:23Zhttp://stackoverflow.com/feeds/question/421205http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/421205/css-performance-issues3CSS Performance issuesSesh2009-01-07T17:24:23Z2009-01-07T22:24:37Z
<p>hi,</p>
<p>What are the aspects of style sheets (CSS) that can lead to poor performance of web sites?
Anything that can really choke up the CPU?</p>
<p>thanks in advance.</p>
<p>Sesh</p>
http://stackoverflow.com/questions/421205/css-performance-issues/421210#4212106Answer by sblundy for CSS Performance issuessblundy2009-01-07T17:26:33Z2009-01-07T17:26:33Z<p>IE expressions can be a killer if over used. They're reevaluated each and every time the rule is applied. </p>
http://stackoverflow.com/questions/421205/css-performance-issues/421215#4212151Answer by Jack Ryan for CSS Performance issuesJack Ryan2009-01-07T17:27:50Z2009-01-07T17:44:27Z<p>I have personally never encountered anything in CSS that would do this. Flash content and exessively large pages are far more likely to slow down a browser. That said I would image over use of expressions or custom IE filters (as are often used for transparency of PNG images) may use a lot of CPU.</p>
http://stackoverflow.com/questions/421205/css-performance-issues/421224#4212244Answer by annakata for CSS Performance issuesannakata2009-01-07T17:30:55Z2009-01-07T17:30:55Z<p>CSS? Not so much it's pretty tight, but on older (like gen 4) browsers I've seen problems with:</p>
<ul>
<li>doing too much on the <code>*</code> selector</li>
<li>using <code>inherit</code> a lot</li>
<li>using the IE expression value abusively</li>
<li>loading a lot of external resources (images, other CSS docs)</li>
<li>applying a lot of what you might call unanchored selectors like <code>div div</code></li>
</ul>
<p>Basically anything which would be difficult to cascade through or would cascade a lot.</p>
http://stackoverflow.com/questions/421205/css-performance-issues/421248#4212482Answer by Triptych for CSS Performance issuesTriptych2009-01-07T17:38:33Z2009-01-07T17:38:33Z<p>Browsers are very good at rendering CSS rules quickly. </p>
<p>Probably more important is the size of the CSS file. For most sites, this isn't a problem, but for larger sites it is something to be aware of. </p>
<p>For instance, <a href="http://cnn.com" rel="nofollow">cnn.com</a> delivers something like 150K of CSS. This will take a few seconds on older modems, so CNN ought to make sure that their CSS is cacheable and gzipped. </p>
http://stackoverflow.com/questions/421205/css-performance-issues/421256#4212561Answer by Henrik Paul for CSS Performance issuesHenrik Paul2009-01-07T17:40:20Z2009-01-07T18:53:11Z<p>Something that chokes not-too-old browsers are huge backgrounds that use "<code>background-position: fixed</code>" a la <a href="http://meyerweb.com/eric/css/edge/complexspiral/glassy.html" rel="nofollow">Complexspiral Redux</a>.</p>
http://stackoverflow.com/questions/421205/css-performance-issues/422382#4223820Answer by orip for CSS Performance issuesorip2009-01-07T22:11:20Z2009-01-07T22:11:20Z<p>It's hard to affect the CPU (except with IE expressions, like sblundy mentioned), but it's very easy to affect the page-load time.</p>
<p>Try to follow <a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">Yahoo client-side performance guidelines</a>, such as:</p>
<ul>
<li>Put CSS links at the top of the page</li>
<li>Use <code><link></code> instead of <code>@import</code></li>
<li>Combine CSS files</li>
<li>Minify CSS files</li>
</ul>
http://stackoverflow.com/questions/421205/css-performance-issues/422397#4223970Answer by Plan B for CSS Performance issuesPlan B2009-01-07T22:15:52Z2009-01-07T22:15:52Z<p>I have seen cases where high-resolution tiled background-images (usually jpg or png) cause a major slowdown (choppy effect) when you scroll.</p>
http://stackoverflow.com/questions/421205/css-performance-issues/422434#4224340Answer by John Dunagan for CSS Performance issuesJohn Dunagan2009-01-07T22:24:37Z2009-01-07T22:24:37Z<p>Most likely, the CSS file is not choking the site quite so much as trips to the server, complex calc, etc. might. But if it is:</p>
<ul>
<li><p>There's an art to writing a lightweight-but-effective css file system that is ever-evolving, to say the least. Effectively using classes and IDs to take advantage of the cascade, for example, can be tough, especially when the project evolves over time, or if the GUI writing it gets swapped out several times over the course of the lifecycle.</p></li>
<li><p>For every legacy browser you have to support, it adds a performance hit, especially if you're using hacks to get it done. Those can be tricky, especially if layered upon one another. Conditional comments are similar - the browser has to decipher which rules it follows, and read through <em>everything</em> before it renders.</p></li>
<li><p>Going full-size image when you could tile or set a color on a background is a drag on siteload, as well.</p></li>
<li><p>(Gratuitous shot) IE can take a long time to misrender your styles and elements.</p></li>
</ul>