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?
thanks in advance.
Sesh
|
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? thanks in advance. Sesh
| |||
|
feedback
|
|
CSS? Not so much it's pretty tight, but on older (like gen 4) browsers I've seen problems with:
Basically anything which would be difficult to cascade through or would cascade a lot. | |||
|
feedback
|
|
IE expressions can be a killer if over used. They're reevaluated each and every time the rule is applied. | |||||||
feedback
|
|
Browsers are very good at rendering CSS rules quickly. 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. For instance, cnn.com 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. | |||
|
feedback
|
|
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. | ||||
|
feedback
|
|
Something that chokes not-too-old browsers are huge backgrounds that use " | ||||
|
feedback
|
|
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. Try to follow Yahoo client-side performance guidelines, such as:
| |||
|
feedback
|
|
I have seen cases where high-resolution tiled background-images (usually jpg or png) cause a major slowdown (choppy effect) when you scroll. | |||
|
feedback
|
|
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:
| |||
|
feedback
|