CSS Performance issues - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T16:53:23Z http://stackoverflow.com/feeds/question/421205 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/421205/css-performance-issues 3 CSS Performance issues Sesh 2009-01-07T17:24:23Z 2009-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#421210 6 Answer by sblundy for CSS Performance issues sblundy 2009-01-07T17:26:33Z 2009-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#421215 1 Answer by Jack Ryan for CSS Performance issues Jack Ryan 2009-01-07T17:27:50Z 2009-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#421224 4 Answer by annakata for CSS Performance issues annakata 2009-01-07T17:30:55Z 2009-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#421248 2 Answer by Triptych for CSS Performance issues Triptych 2009-01-07T17:38:33Z 2009-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#421256 1 Answer by Henrik Paul for CSS Performance issues Henrik Paul 2009-01-07T17:40:20Z 2009-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#422382 0 Answer by orip for CSS Performance issues orip 2009-01-07T22:11:20Z 2009-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>&lt;link&gt;</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#422397 0 Answer by Plan B for CSS Performance issues Plan B 2009-01-07T22:15:52Z 2009-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#422434 0 Answer by John Dunagan for CSS Performance issues John Dunagan 2009-01-07T22:24:37Z 2009-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>