17
Aug
2006
Posted by David Peralty as General
While a lot of people are out to optimize their sites/blogs, most everyone seems to skip over CSS.
I have been spending some time looking at CSS Optimization tools today. I wanted something free, online, and easy to use. And of course, something that worked. There are actually quite a few websites that fit the bill, and some of them are easier to use, produce more friendly code, and others are a bit harder to use, but can produce amazing results.
I tested the CSS Optimizer, Icey’s CSS Compressor, Flumpcakes CSS Optimiser, and CleanCSS to see which one could compress some default CSS files from popular websites the best.
I chose six sites:
CSS optimizers do a variety of voodoo magic to get the end result. This includes merging similar classes, removing useless properties, removing whitespace, and so forth. This can lead to code that is not very easily read by you or I, but for larger CSS files, it can condense the file size so much that it really makes a big difference in page loading times.
Many broadband users might not think this matters much, as most websites seem to load fast for them, but if each site you went to loaded even 10% faster, think of all the time it could save you over the course of a week, a month or even a year. The bandwidth savings for the website operator can also be immense. I would recommend that you always keep a copy of your human readable CSS code so that if you ever need to make any changes it does not take you a long time to figure out what you need to change, and then you can re-optimize it.
The Results
I ran all these tests with the tools being on their default settings.This might not have given them all equal footing, but I think it is how most of us will use them because we don’t know what options to turn on or off, and some tools did not have specialty options that could be turned on or off.
Digg was our first guinea pig. Before optimization Digg.com’s main CSS file was 30.56 KB.
| Site | After | Reduction |
| CSS Optimizer | 25.74 KB | 9.89% (failed: moves Popular stories and upcoming stories tabs next to Technology header and messes up Digg Home button) |
| Icey CSS Compressor | 16.69 KB | 45.39% (failed: changes padding/margins on some items. Spaces things out more) |
| Flumpcakes CSS Optimiser | 28.26 KB | 5% (failed: Messes up Digg Home button) |
| CleanCSS | 26.038 KB | 16.8% |
Slashdot recent redesign resulted in a CSS file of 19.1 kilobytes large. The CSS optimizers still delivered, shrinking the filesize quite a bit.
| Site | After | Reduction |
| CSS Optimizer | 15.01 KB | 21.38% |
| Icey CSS Compressor | 9.68 KB | 49.38% |
| Flumpcakes CSS Optimiser | 16.9 KB | 11% |
| CleanCSS | 15.234 KB | 22.1% |
Filmsy was next. This one had the smallest CSS file, clocking in at only 11.39 KB. Nevertheless, we achieved compression of almost 50%!
| Site | After | Reduction |
| CSS Optimizer | 9.25 KB | 18.85% |
| Icey CSS Compressor | 6.03 KB | 47.08% |
| Flumpcakes CSS Optimiser | 9.4 KB | 17% |
| CleanCSS | 8.27 KB | 29.1% |
Next up is iBegin Toronto. A nice search engine, its CSS file was 22.79 kb
| Site | After | Reduction |
| CSS Optimizer | 16.17 KB | 29.04% (failed: font-size got larger) |
| Icey CSS Compressor | 10.04 KB | 55.95% |
| Flumpcakes CSS Optimiser | 19.28 KB | 12% (failed: font-size got larger) |
| CleanCSS | 17.134 KB | 26.6% (failed: font-size got larger) |
Second to last came Download.com. The move to CSS-P made a lot of noise, and we thought it would be interesting to see what benefits a large company could get. The CSS file itself was a 54.2 kb, largest of all sites we tested.
| Site | After | Reduction |
| CSS Optimizer | 17.36 KB | 32.39% (failed: Fonts and Padding on elements change) |
| Icey CSS Compressor | 54.3 KB | 0% |
| Flumpcakes CSS Optimiser | 20.0 KB | 17% (failed: Fonts and Padding on elements change) |
| CleanCSS | 45.699 KB | 17.8% |
Last up came ESPN. Alongwith Download.com, these two sites are the most mentioned when it comes to the viability of CSS on large-scale websites. ESPN’s CSS clocked in at 25.68 kb.
| Site | After | Reduction |
| CSS Optimizer | 17.36 KB | 32.39% (failed: Fonts and Padding on elements change) |
| Icey CSS Compressor | 7.74 KB | 69.84% |
| Flumpcakes CSS Optimiser | 20.0 KB | 17% (failed: Fonts and Padding on elements change) |
| CleanCSS | 18.944 KB | 27.9% |
Condensed Table
| Site | CSS Optimiser | Icey Compressor | Flumpcakes | Clean CSS |
| Digg.com | failed | failed | failed | 16.8% |
| Slashdot | 17.45% | 51.21% | 9% | 21.9% |
| Filmsy | 18.85% | 47.08% | 17% | 29.1% |
| iBegin | failed | 55.95% | failed | failed |
| Download.com | failed | 45.49% | 0% | 27.9% |
| ESPN | failed | 69.84% | failed | 27.9% |
| Average: | 18.15% | 53.91% | 8.67% | 24.18% |
The clear winner here is Icey’s CSS Compressor, blowing away the rest. It even shows the compressed code with color coding, making it easier to see the changes they made and how its formatted. It also makes it easier to read that the output of most other tools.
In second place seems to be CleanCSS which is based on csstidy 1.1. It also shows syntax highlighting which makes it easy to understand. They also list the changes they made, and any errors they noticed.
In third comes CSS Optimizer which is one of the simplest of them all. It does not have the bells and whistles of the previous two, but is much nicer looking than our last place entrant, Flumpcakes CSS Optimiser.
Flumpcakes has a few more options than CSS Optimiser, but it does not have the same simple look. The results page in my personal opinion is ugly, and does not even tell the unit of measurement used for comparison.
Conclusions
CSS optimization is a very valid form of speeding up downloads without having to sacrifice much (just legibility). With the average dialup user downloading at 3kb/s, savings of just 10kb can mean the page loads a stunning 3 seconds faster. And just imagine ESPN with savings of almost 18kb. Multiple by the large traffic the site gets, and those are some real solid promotion-worthy savings. So while this may not be important whilst you use a broadband connection, just you wait until you go visit your grandparents.
Do you like this article? Submit it to Blogosphere News!
201 Responses
Scott
August 17th, 2006 at 11:17 am
1Interesting article—great study. I thought for sure Clean CSS would come out on top. Thanks.
CISCO Software
August 17th, 2006 at 12:26 pm
2Icey Didn’t work welll for me at all
Maybe my code is junk
Shoot the bunny
Fake’s Tank » Blog Archive » CSS Optimization
August 17th, 2006 at 12:57 pm
3[...] There are plenty of css optimizers out there, but BloggingPro were kind enough to make a comparative chart of 5 different ones. [...]
Sam’s random musings » CSS Optimization: Make Your Sites Load Faster for Free
August 17th, 2006 at 12:59 pm
4[...] CSS Optimization: Make Your Sites Load Faster for Free: [...]
Sam’s Design and Development Thoughts » Blog Archive » CSS Optimization: Make Your Sites Load Faster for Free
August 17th, 2006 at 1:01 pm
5[...] CSS Optimization: Make Your Sites Load Faster for Free: [...]
eBiz-IQ Online Success Help and Tools » CSS Optimize and your site will load faster for free
August 17th, 2006 at 1:03 pm
6[...] read more | digg story [...]
rhamej
August 17th, 2006 at 1:12 pm
7I tested them in my site, and Icey Compressor was the worst actually.
John Stracke
August 17th, 2006 at 1:23 pm
8This seems like a pretty minor win. If your CSS is in a separate file, you can have just one static file for the whole site, and it’ll be cached.
John Laur
August 17th, 2006 at 1:23 pm
9I suppose this goes without saying but you can just use a tool like mod_gzip and get a 50-90% size reduction in your data transfer without having to wrestle with one of these tools — none of which actaully work 100%.
Imagine trying to track down the source of a user’s bug report in the competely nasty output of one of these things and you’ll soon realize it’s no wonder none of these sites use it (and all of them support gzip and deflate mode transfers!)
David Levy (( Creativity Matters » Blog Archive » CSS Optimization / Compression
August 17th, 2006 at 2:00 pm
10[...] CSS Optimization: Make Your Sites Load Faster for Free by Blogging Pro [...]
Dave
August 17th, 2006 at 2:02 pm
11We need tools that convert the CSS to run faster not just load faster. That is, the browser’s CSS engine would seem to process and render faster on certain CSS than other.
AhmedF
August 17th, 2006 at 2:19 pm
12John - I would say that is a weak argument. GZip is a different beast from what this do. It would in fact act complimentary. A CSS optimizer tries to take voerlapping CSS definitions and merge them. GZip does nothing akin to it (not to mention that optimizing CSS increases server load by exactly nil).
As for the results - interesting. Icey worked for the tester, but not for the commentators. Wanting to check it out - what sites did you guys find it fail on?
Keith
August 17th, 2006 at 2:23 pm
13That’s a pretty good analysis there. I have not really thought by optimising CSS, it would really speed up web surfing.
Perhaps, I would try it some days.
CSS optimizers | Scriptorama
August 17th, 2006 at 2:31 pm
14[...] Veel web developers proberen zoveel mogelijk dataverkeer te besparen door Javascript code te compresseren. Een andere mogelijkheid op besparing is CSS compresseren. In CSS Optimization: Make Your Sites Load Faster for Free worden verschillende CSS compressors vergeleken. De test runs werden uitgevoerd op verschillende populaire websites zoals Digg, Slashdot en Download.com met compressies die soms wel eens 70% schelen. [...]
Peter Lord
August 17th, 2006 at 2:51 pm
15I think a combination of css optimization plus gzip compression. As then you have optimized + compressed.
http://www.websiteoptimization.com checks for gzip compression and gives a plus if it’s compressed.
earthquaking
August 17th, 2006 at 3:15 pm
16You tested all tools with diferent css files…
In his manner, how your testing can be considered a valid one?
AlbanyWiFi.com » Blog Archive » CSS Optimization: Make Your Sites Load Faster for Free
August 17th, 2006 at 3:17 pm
17[...] http://www.bloggingpro.com/archives/2006/08/17/css-optimization/ [...]
Dennis Forbes
August 17th, 2006 at 3:19 pm
18I shudder at the idea of a dial-up user visiting Digg — that site loads ultraslow on my high speed, and I average just under 10Mbps
cahoo
August 17th, 2006 at 3:21 pm
19as a test, i tried ICEY tool in our project.
results:
given that most large CSS projects involve branching, child->parent, overwritting selectors, etc… this tool removes these so called ‘adundant’ selectors, shorthand margins/padding settings and breaks our page.
i think your best bet is to write optimized CSS and gzip in the first place. leave this tool for developers who don’t know or write optimized CSS, so they can get an example view of their CSS using shorthand.
i can see this tool *not* breaking flat/simple sites, but at that point, download speed shouldnt be an issue making this tool useless for simple and complex sites.
Jesse Brede
August 17th, 2006 at 4:03 pm
20I tried ICEY Tool and had 0 success. It stripped out major necessary CSS and completely broke our site.
http://www.blastro.com
Granted, our css is a bit of a mess, but I thought the tools would be able to handle it. Any suggestions?
James
August 17th, 2006 at 4:14 pm
21Ah, you left out a popular one:
http://www.csstweak.com
I love the interface, it’s simple, good results and it even has a dashboard widget!
Joe
August 17th, 2006 at 4:27 pm
22Did you actually create a test scenario that would measure the impact on end users? No? I’m betting that all your optimisation is a complete waste of time.
JOhn
August 17th, 2006 at 5:36 pm
23Or you could turn on deflate/gzip compression on the webserver and save bandwidth on the css,js,htm,xml,etc. files.
CSS Optimization
August 17th, 2006 at 5:50 pm
24[...] David over at Blogging Pro has put together a useful post on CSS Optimization and making your site load faster through smart use of CSS. In the post he tests four CSS optimization tools (CSS Optimizer, Icey’s CSS Compressor, Flumpcakes CSS Optimiser and Clean CSS) on a variety of sites and then publishes his results. It’s probably not a post for the beginner but many of you will find it useful. If you enjoyed this post Subscribe to the Free ProBlogger Newsletter [...]
Jeff
August 17th, 2006 at 6:04 pm
25Wow, there’s a lot of ignorance going on in these comments.
CSS Optimization != Compression
Get it through your thick heads, really. Optimization is the process of taking the CSS rules and combining them so that there are less rules and less redundancy.
AFTER that step, you then reduce the css (spaces, etc) and finally, you can slap some GZIP on it.
stranh
August 17th, 2006 at 7:25 pm
26i compared tested CSS optimisers with my boookmarks and one name immediately poped up… The one that does not even have a “normal” domain name - Icey. I knew it will win even before I read the article and now I am reading it broke someones page…
Online CSS Optimization Tools Tested : Tech Tips
August 17th, 2006 at 7:56 pm
27[...] Over on BloggingPro.com there is an article up where various online CSS optimization tools were tested on popular websites to see how much they could reduce the CSS file size by, without breaking the look and feel of the site. CSS optimizers do a variety of voodoo magic to get the end result. This includes merging similar classes, removing useless properties, removing whitespace, and so forth. This can lead to code that is not very easily read by you or I, but for larger CSS files, it can condense the file size so much that it really makes a big difference in page loading times. [...]
Ajay
August 17th, 2006 at 9:33 pm
28Ran the top 3 on my site, and while CSS Compressor did do a good deal of compressing, the code was totally unreadable. It can probably be used as a final product, once your styling work is done.
CleanCSS on the other hand has good options and that is something I will probably use to optimize the CSS. My pick.
Sapphire
August 17th, 2006 at 9:50 pm
29Outputting my CSS into Icey Compressor, it slashed the weight of it by nearly half but in its slicing spree, it sacrificed a sizable chunk of superficial essentials. Clean CSS though less aggressive in compression inflicted no injury.
Optimize Your CSS for Better SEO Results » idano - Dan Masters on Web Design, Blogging, and SEO
August 17th, 2006 at 10:28 pm
30[...] The article is - CSS Optimization: Make Your Sites Load Faster for Free [...]
Labnotes » links for 2006-08-18
August 17th, 2006 at 10:49 pm
31[...] CSS Optimization: Make Your Sites Load Faster for Free by Blogging Pro Comparison of various CSS optimizers. (tags: css optimization) [...]
Andrew Breese
August 17th, 2006 at 11:55 pm
32users on dial-up saving 3k on a page. thats not the focus or timesave I thought you’d see - and how many sites are really designed for dial-up these days?
A little under-performing. However kudos to you for a well written article, and spending the time and effort.
CSS Optimization: Make your site load faster for free » myownshit.dk
August 18th, 2006 at 12:21 am
33[...] Often overlooked for the more popular image optimization, CSS optimization can help shave off quite a bit from your pageloading times. The article compares four different CSS optimizers, leading to one winner. Even Digg could use its CSS compressed a bit.read more | digg story [...]
Cssdesign.dk » Blog Archive » CSS Quicklinks (01/2006)
August 18th, 2006 at 3:56 am
34[...] While a lot of people are out to optimize their sites/blogs, most everyone seems to skip over CSS. I have been spending some time looking at CSS Optimization tools today. I wanted something free, online, and easy to use. And of course, something that worked. http://www.bloggingpro.com/archives/2006/08/17/css-optimization/ CSS3 Preview af Joost de Valk og Jake Rutter [...]
Basic Thinking Blog » CSS Optimizer im Test
August 18th, 2006 at 4:52 am
35[...] CSS Optimizer? Tools, die die CSS Datei so eindampfen, dass sie schneller geladen werden kann. Das wiederum wirkt sich natürlich auf die Geschwindigkeit aus, wie schnell zB die Startseite geladen werden kann. Gerade ISDN/Analog-Surfer können je nach Opmitierung die komplette Seite um einige Sekunden schneller sehen. Hat doch was. Auf zum Test: CSS Optimization: Make Your Sites Load Faster for Free [...]
Weblog Tools Collection » CSS Optimizers
August 18th, 2006 at 6:46 am
36[...] CSS Optimizers David over at BloggingPro has published an analysis of CSS Optimization tools commonly available and of how they perform against popular tools, blogs and sites such as Digg, Slashdot and Downloads.com. Some of these optimizers will remove valuable white spaces and comments from your CSS. So it might be worth the time to create an “edit” copy and an online copy. tagged css optimize Related Posts from the Past:No results. [...]
Starked SF, Unforgiving News from the Bay » Blog Archive » Talk of the Town: Friday, August 18
August 18th, 2006 at 8:16 am
37[...] CSS optimization from BloggingPro. [...]
bohulu » links for 2006-08-18
August 18th, 2006 at 9:20 am
38[...] CSS Optimization: Make Your Sites Load Faster for Free by Blogging Pro (tags: css webdesign) [...]
me.2you life | CSS Оптимизаторы
August 18th, 2006 at 10:19 am
39[...] Интересный тест CSS оптимизаторов нашелся в ленте planet.wordpress.org. Товарищ David c BloggingPro, провел тест online css оптимизаторов, на популярных сайтах.. I tested the CSS Optimizer, Icey’s CSS Compressor, Flumpcakes CSS Optimiser, and CleanCSS to see which one could compress some default CSS files from popular websites the best. // BloggingPro [...]
caps:blog » Optimisez vos CSS - le blog encapsulé qui parfois décapsule
August 18th, 2006 at 10:35 am
40[...] Blogging Pro nous propose tout un éventail d’optimiseurs de CSS, à essayer… google_ad_client = “pub-3004591612060533″; google_ad_width = 336; google_ad_height = 280; google_ad_format = “336×280_as”; google_ad_type = “text_image”; google_ad_channel =”"; google_color_border = “313370″; google_color_bg = “313370″; google_color_link = “FF8000″; google_color_url = “FF8000″; google_color_text = “FFFFFF”; [...]
spa
August 18th, 2006 at 12:54 pm
41My first attempt with Icey’s broke my CSS layout quite a bit as someone above mentioned.
So, I turned off the options under the “RULES” section and made sure that the “Output using smallest size” option was ticked.
Although it didn’t optimize my CSS, just taking out all of the line brakes and white space formatting cut the size of my file in half.
절망 클럽
August 18th, 2006 at 5:18 pm
42CSS 크기 줄이기 - CSS Optimizer…
CSS Optimization: Make Your Sites Load Faster for Free
CSS의 최적화에 대한 정보가 워드프레스 알림판에 올라와 있어서 살펴봤는데, 덩치가 커진 CSS 파일의 크기를 줄이는데 효과가 있는것 같아서 소개합….
Andreas
August 18th, 2006 at 6:00 pm
43I love CSS Tidy, I use it to make final formatting to all my designs. A link to http://csstidy.sourceforge.net/ would be very appropiate, simply because the script version allows you to add automatic CSS optimizing to your site if wanted. A great tool, very much thanks to the simple but very useful template system!
Andreas
August 18th, 2006 at 6:02 pm
44By the way, CSS Tidy 1.2 (a newer version than the CleanCSS site uses) is available here: http://cdburnerxp.se/cssparse/css_optimiser.php
AK47 | IT风月 » links for 2006-08-19
August 18th, 2006 at 7:18 pm
45[...] CSS Optimization: Make Your Sites Load Faster for Free by Blogging Pro (tags: css optimization tools) [...]
Given Facts » Optimize CSS file
August 19th, 2006 at 12:28 am
46[...] But David at Blogging Pro disagrees: CSS optimization is a very valid form of speeding up downloads without having to sacrifice much (just legibility). With the average dialup user downloading at 3kb/s, savings of just 10kb can mean the page loads a stunning 3 seconds faster. And just imagine ESPN with savings of almost 18kb. Multiple by the large traffic the site gets, and those are some real solid promotion-worthy savings. So while this may not be important whilst you use a broadband connection, just you wait until you go visit your grandparents. [...]
Given Facts » Optimize CSS file
August 19th, 2006 at 12:28 am
47[...] But David at Blogging Pro disagrees: CSS optimization is a very valid form of speeding up downloads without having to sacrifice much (just legibility). With the average dialup user downloading at 3kb/s, savings of just 10kb can mean the page loads a stunning 3 seconds faster. And just imagine ESPN with savings of almost 18kb. Multiple by the large traffic the site gets, and those are some real solid promotion-worthy savings. So while this may not be important whilst you use a broadband connection, just you wait until you go visit your grandparents. [...]
Hypercubed Blog » Blog Archive » Links of the Week (Week #31, 32, & 33, 2006)
August 19th, 2006 at 5:48 pm
48[...] CSS Optimization: Make Your Sites Load Faster for Free by Blogging Pro - There are a lot of tools out there to optimize HTML. What about optimizing CSS? [...]
Justin WIck
August 21st, 2006 at 12:59 am
49This article would be much more interesting if you also included a column showing how large the files were after gzipping. I disagree with other posts that seem to think this optimization is orthogonal to gzip compression, as it is clearly reducing the redundancy of the document, and thus its compressibility.
BitTubeBlog » Blog Archive » Save the world through Optimization.
August 21st, 2006 at 4:02 am
50[...] This morning I stumbled onto this link via the WordPress news site. I followed the post through to digg and found some interesting comments on Optimization which I hadn’t considered. As we continue to move towards a more prolific Mobile Web optimization becomes ever more important. Properly Optimized content saves money. It saves your clients money serving it up, as mentioned in the digg Comments. In addition because mobile web users’ often pay per kB that they download, optimizing your web development you save your users cash. [...]
Lorelle on WordPress » CSS Optimization: Cleaning Up Your Stylesheet Analysis
August 21st, 2006 at 8:09 am
51[...] Blogging Pro has an interesting analysis on CSS Optimization that is definitely helpful if you are considering your website’s design optimization as well as your Search Engine Optimization (SEO). Just be careful using these on WordPress Themes. I have been spending some time looking at CSS Optimization tools today. I wanted something free, online, and easy to use. And of course, something that worked. There are actually quite a few websites that fit the bill, and some of them are easier to use, produce more friendly code, and others are a bit harder to use, but can produce amazing results. [...]
BlueSparc | design, technology news » Blog Archive » Make Your Site Load Faster for Free with CSS Optimization
August 21st, 2006 at 8:39 am
52[...] Make Your Site Load Faster for Free with CSS Optimization Often overlooked for the more popular image optimization, CSS optimization can help shave off quite a bit from your pageloading times. The article compares four different CSS optimizers, leading to one winner. Even Digg could use its CSS compressed a bit. [...]
CSS Optimization at JohnTP’s Home
August 21st, 2006 at 12:21 pm
53[...] Blogging Pro has an interesting analysis on various CSS Optimization tools that are helpful in making your site load faster. The tools tested are CSS Optimizer, Icey’s CSS Compressor, Flumpcakes CSS Optimiser, and CleanCSS out of which the winner is Icey’s CSS Compressor. [...]
Webmaster Libre » Archivo del weblog » Comparativa de compresores para CSS
August 21st, 2006 at 3:41 pm
54[...] archivada en: CSS, Recursos, Herramientas Online. Puedes dejar un comentario, o enviar un trackback desde tusitio. [...]
COLD CASE » Blog Archive » CSS Optimization: Make your site load faster for free
August 21st, 2006 at 6:29 pm
55[...] read more | digg story [...]
Skylog » Blog Archive » links for 2006-08-22
August 22nd, 2006 at 12:24 am
56[...] CSS Optimization: Make Your Sites Load Faster for Free by Blogging Pro (tags: css) [...]
Weblogger.ch » Blog Archive » Liens
August 22nd, 2006 at 1:24 am
57[...] CSS Optimization: Make Your Sites Load Faster for Free: comment optimiser les CSS, quels outils sont les plus efficaces [...]
Adam
August 22nd, 2006 at 7:24 am
58Maybe I’ve got it wrong, but your percentages seem to be a bit out of whack.
Aseed
August 22nd, 2006 at 11:19 am
59Nice idea!
merci
Cow Electric » Blog Archive » CSS Optimization: Make Your Sites Load Faster for Free
August 22nd, 2006 at 2:29 pm
60[...] Original post here. [...]
niam.co.uk » Blog Archive » Compress CSS
August 22nd, 2006 at 2:37 pm
61[...] There are a lot of CSS optimisation programs out there, and luckily the folks at Blogging Pro have done a rundown of some of the most popular. The list reviewed includes CSS Optimizer, Icey CSS Compressor, Icey CSS Compressor, Flumpcakes CSS Optimiser, and CleanCSS. Although it’s worth checking out how each fared, if you’re looking for a quick link to the winner, check out Icey CSS Compressor. With an average CSS file compression of 50%, Icey’s CSS Compressor blew away the competition. Check out the rundown here. [...]
Programming » CSS Optimization: Make your site load faster for free
August 24th, 2006 at 9:24 am
62[...] Often overlooked for the more popular image optimization, CSS optimization can help shave off quite a bit from your pageloading times. The article compares four different CSS optimizers, leading to one winner. Even Digg could use its CSS compressed a bit.read more | digg story [...]
Weblog Tools Collection: CSS Optimizers at SocialCode
August 24th, 2006 at 12:33 pm
63[...] CSS Optimizers David over at BloggingPro has published an analysis of CSS Optimization tools commonly available and of how they perform against popular tools, blogs and sites such as Digg, Slashdot and Downloads.com. Some of these optimizers will remove valuable white spaces and comments from your CSS. So it might be worth the time to create an “edit” copy and an online copy. [...]
d-log » Blog Archive » CSS Optimisers anyone
August 24th, 2006 at 3:28 pm
64[...] Hier staan er enkele interessante tools die je toelaten om je CSS bestand te ‘prepareren’ vooraleer je hem op het internet voor de leeuwen gooit. tags: tools, css [...]
Madarco DevBlog » Blog Archive » Some usefull Javascript tools
August 25th, 2006 at 12:57 pm
65[...] Now something on CSS: I’ve found this comparison between css optimizers, and Icey’s CSS Compressor seems to have won the challenge. It can be really useful. [...]
brandonquintana.com
August 26th, 2006 at 7:09 pm
66css optimization make your sites load faster for free…
…
Rue Plumet » Interesting Sites For This Week
August 28th, 2006 at 3:03 am
67[...] CSS Optimization - Make Your Sites Load Faster for Free Tagged as: html css howto web utilities [...]
EveryDigg » Blog Archive » CSS Optimization: Make your site load faster for free
August 30th, 2006 at 4:10 pm
68[...] Often overlooked for the more popular image optimization, CSS optimization can help shave off quite a bit from your pageloading times. The article compares four different CSS optimizers, leading to one winner. Even Digg could use its CSS compressed a bit.read more | digg story [...]
shackleton
August 31st, 2006 at 12:01 am
69for (x in document.write) { document.write(x);}
just testing, sorry if this causes any inconvenience
/bin/more beer » Blog Archive » Ferramentas de compresso de CSS
September 2nd, 2006 at 9:16 pm
70[...] Encontrei em um blog uma interessante comparao entre ferramentas de compresso de CSS. [...]
andrew
September 3rd, 2006 at 5:24 pm
71very cool comparison, only downside is they all seem to mash the css up with no linebreaks.
Andrea Giuliani
September 6th, 2006 at 7:10 am
72[...] Link: CSS Optimization: Make Your Sites Load Faster for Free Mercoledì, 6 Settembre, 2006 Pubblicato in Tips & Tricks [...]
Tech-Scope.com -A technology site built for information sharing » CSS Optimization, have you tried it?
September 12th, 2006 at 7:40 am
73[...] Recently, David over at Blogging Pro has written a very useful post on CSS Optimization and making your site load faster with some hacks of css. He tests four CSS optimization tools which are (CSS Optimizer, Icey’s CSS Compressor, Flumpcakes CSS Optimiser and Clean CSS) on a popular websites such as Digg.com, Slashdot, Flimsy, iBegin, Download.com, and ESPN. Feel curious to know the result? Click here. [...]
Top 15 Programming Sites on Digg.com for Last 30 Days - Intelligentedu.com Free Computer Training Blogs
September 14th, 2006 at 12:24 am
74[...] Here are what I deem to be the top 15 free training and tutorial sites posted at digg.com/prgramming for the last 30 days. I have compiled these here so you can see the type of content that we esteem to be valuable. These cover a variety of subjects and areas, including web development, Ajax, Java, CSS, PHP, Firefox extensions, C++, Python, MySQL, Design Patterns, Grid Computing, and Interview Questions. Roll-your-own AJAX SlideshowThe folks at TripTracker.net have decided to share their JavaScript slideshow with the rest of the Web. Just import their script in your web page to add a cool popup slideshow. Comes with a handy bookmarklet for viewing Flickr photos, too. More…32 comments Blog This Email This COWS Ajax - It’s about the 3rd-party apps, Stupid!Traditional Ajax constrains your apps to one site. COWS Ajax let’s them flourish as 3rd party accessible tools, unlocking a new breed of web application. This article addresses some of the pro’s and con’s of granting such access. More… 48 comments Blog This Email This Java: Remote Method Invocation (RMI) an applet exampleRMI is one of the core Java APIs since version 1.1. It provides a framework for distributed computing. With RMI, separate parts of a single program can exist in multiple Java environments on multiple machines. RMI is one of the fundamental APIs that Enterprise Java Beans are built on. More…41 comments Blog This Email ThisHow To: Your First Firefox Extension — Say XULThe active ingredient is XUL, a markup language (the eXtensible [or "XML-Based"] User-interface Language, to be precise) that describes things like toolbars, menus, keyboard shortcuts. More… 22 comments Blog This Email ThisC/C++ development with the Eclipse PlatformGet an overview of how to use the Eclipse Platform in your C/C++ development projects. Though Eclipse is mainly a Java ™ development environment, its architecture ensures support for other programming languages. In this article, you’ll learn how to use the C/C++ Development Toolkit (CDT), which is the best C/C++ toolkit available for Eclipse. More… 41 comments Blog This Email ThisCSS tips and tricks!I ’ve been writing CSS for about 2 years now and I still feel like every time I open up a blank file and begin writing CSS for a new design I learn something new. For those of you that are new to CSS or experts always looking for a new trick, here are some of things I do on a regular basis to keep my code organized (kind of). More… 50 comments Blog This Email ThisNew to grid computing? Take a tourGrid computing allows you to unite pools of servers, storage systems, and networks into a single large system so you can deliver the power of multiple-systems resources to a single user point for a specific purpose. To a user, data file, or an application, the system appears to be a single enormous virtual computing system. More… 24 comments Blog This Email ThisHow to correctly insert a Flash into XHTMLI found this to be helpful while coding one of my clients site’s in that I had never been required to make Flash fully compliant by W3C Standards. Hopefully this can help some others too. More… 57 comments Blog This Email ThisSoftware Design PatternsWhy they are good and how to write them. More… 30 comments Blog This Email ThisPython 101 cheat sheetThis is a great Python cheat sheet. More… 25 comments Blog This Email ThisMy SQL Database NormalizationCall me a nerd, but I ’ll never forget the elation I felt several years back when I first succeeded in connecting a database to a Web page. At the time a newcomer to the world of database administration, I happily began creating all kinds of databases to store my valuable information. However, several problems soon arose… More… 57 comments Blog This Email ThisFive Habits of Highly Profitable Software Developers”Software developers who have the ability to create and maintain quality software in a team environment are in high demand in today’s technology-driven economy. The number one challenge facing developers working in a team environment is reading and understanding software written by another developer. “ More… 60 comments Blog This Email ThisHow to create a StyleGuide for your HTML & CSSfor any medium sized or larger project, be sure to create a style-guide. This is just one example and gives a few reasons why it will help you tremendously. More… 38 comments Blog This Email This50 Common Interview QuestionsCollections of Questions. More… 64 comments Blog This Email ThisCSS Optimization: Make your site load faster for freeOften overlooked for the more popular image optimization, CSS optimization can help shave off quite a bit from your pageloading times. The article compares four different CSS optimizers, leading to one winner. Even Digg could use its CSS compressed a bit. More… 73 comments Blog This Email This Technorati Tags: web development, Ajax, Java, CSS, PHP, Firefox extensions, C++, Python, MySQL, Design Patterns, Grid ComputingShare and Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages. [...]
Successful Blog - SOB Business Cafe 08-25-2006
September 15th, 2006 at 7:09 pm
75[...] Blogging Pro can show you the way to make your site load faster for FREE. [...]
ChrisLegend.net » Blog Archive » That fresh CSS smell
September 19th, 2006 at 9:18 am
76[...] Now that I (finally) have the site looking the way I want and I’m done with the coding, save for a few small tweaks, I was able to optimize the site’s CSS. Using this post on BloggingPro as my guide, I chose CleanCSS as my method for getting the site to load as efficiently as possible. [...]
DailyPlug.com - Free Website Promotion
September 20th, 2006 at 11:45 am
77Besides cleaning up the CSS file, you can also use file compression like mod_deflate for Apache. That will compress text files before sending them to the client.
--=vova=--
September 29th, 2006 at 11:54 am
78css rulzzzzzzzzzzzz
ContentPop.com - Ally Barstow
October 3rd, 2006 at 1:32 am
79The compression has really opened my eyes to trying this with some of my own websites.
Layout mit CSS optimieren und mit allen Browsern testen - einfach umsetzen
October 15th, 2006 at 6:12 am
80[...] BloggingPro hat einige grundsätzliche Optimierungsmöglichkeiten von CSS-Dateien unter http://www.bloggingpro.com/archives/2006/08/17/css-optimization veröffentlicht. [...]
Make Firefox Load Faster - Optimization Tweaks, Tools, Tips and Extensions » Jammed: Full into capacity | Personal, Health, Wordpress Themes, Blogger Templates, Reviews, etc.
October 24th, 2006 at 9:17 pm
81[...] For webmasters, you can help your visitors by making your sites load faster. Here are some tips: 1. Optimize your CSS. BloggingPro.com provided some tips and recommendations of the tools you can use. 2. Create faster loading HTML pages by HTML Source. [...]
2 tablespoons » Blog Archive » Taking Your CSS Skills to the Next Level
November 6th, 2006 at 11:32 pm
82[...] CSS Optimization: http://www.bloggingpro.com/archives/2006/08/17/css-optimization/ [...]
2 tablespoons » Blog Archive » eBooks, Academic Publishing, and Drupal
November 11th, 2006 at 11:11 am
83[...] CSS Optimization - David’s comparison of CSS optimization services [...]
Icey
December 1st, 2006 at 11:53 am
84Hi folks,
I’ve fixed some major bugs in my css compressor, so hopefully it will work fine for everyone now.
Information can be found here:
http://iceyboard.no-ip.org/projects/css_compressor/
Feel free to contact me if you find an incompatible site or have any suggestions/comments.
CSS Optimierung - bueltge.de [by:ltge.de]
December 5th, 2006 at 7:57 am
85[...] Blogging Pro vergleicht verschiedene Dienste zum optimieren des CSS-Code’s - CSS Optimization: Make Your Sites Load Faster for Free. [...]
mushu
January 20th, 2007 at 10:52 am
86some of these strip away even valid CSS WTF ?
ie
you have one item with a border, it will remove the border and other important styles what a load of crap, it’s as if the optimizer has its own agenda i guess that’s how they sell their products,
MondoBlog » Blog » Fast CSS Links Collection - Num 7
January 24th, 2007 at 6:49 pm
87[...] CSS Optimization: Make Your Sites Load Faster for Free [...]
KoMa
February 7th, 2007 at 10:29 am
88[...] Auf BloggingPro wurden 4 CSS-Optimierungen verglichen. Seine CSS mal “dadurchzujagen” kann ja nicht schaden. Testen lohnt sich. [...]
ARTbird309’s Blog » Blog Archive » links for 2007-02-16
February 15th, 2007 at 7:20 pm
89[...] CSS Optimization: Make Your Sites Load Faster for Free by Blogging Pro (tags: css optimization webdesign tools web comparison webdev) [...]
Comparison CSS cleanup/compress/optimizer tools « idoblogging
March 7th, 2007 at 11:24 am
90[...] http://www.bloggingpro.com/archives/2006/08/17/…; [...]
CSS Mega Info List « Intrigued?
March 8th, 2007 at 9:16 am
91[...] CSS Optimization: Make Your Sites Load Faster for Free - CSS optimizers do a variety of voodoo magic to get the end result. This includes merging similar classes, removing useless properties, removing whitespace, and so forth. [...]
zazou
March 8th, 2007 at 9:46 am
92Tried Icey and it compressed brilliantly - nearly 50% - but did give rise to one glitch in Firefox at it’s strongest setting, easily fixed.
But the biggest problem was Safari on the Mac; even at the mildest setting it was as if the browser could not read the CSS at all.
Anyone else com across this or an idea of why it might be the case?
Dirk Karl Maßat
March 9th, 2007 at 10:35 pm
93CSS optimization is the process of minimizing your markup and CSS files for maximum speed. You can employ some of the same techniques to optimize CSS that you learned in Chapter 3, “HTML Optimization.” Whitespace removal, cutting comments, crunching color values, and embedding code with SSI are some of the techniques common to both CSS and HTML optimization. CSS gives you more flexibility than HTML or XHTML, however, because you can make up your own names and group rules together to save space.
You’ll reap the greatest rewards by using CSS to transform your code into a more rule-based modus operandi. Converting old-style table/font layouts into XHTML/CSS-style code typically saves 25 to 50 percent off file sizes and gives you the benefits of adaptable structure and separate presentation. You can use layering and inheritance to save space and increase compatibility, and use shorthand properties to shrink your CSS code by up to 50 percent. This chapter gives you the tools you need to optimize your CSS.
gutschein
March 18th, 2007 at 5:47 am
94Very interesting article. The design is amazing.
Greetings,
gutschein
Tonerversand
March 24th, 2007 at 11:54 am
95I think these blog is really useful for new comers and Excellent resource list. It´s a very interesting Blog and simple answer of many questions.Keep up the good work!
Thanks it helps me a lot…
Damenschuhe
March 28th, 2007 at 1:52 pm
96Interessante Seite
1 Mio Thanks for Info
Eckbert Heinenberg
April 1st, 2007 at 2:29 pm
97That is really useful information! Thanks for wrighting this..
Onlineshop Hundefutter
April 2nd, 2007 at 9:20 am
98Great and excellent article t’s realy helpful.
Heinz
April 5th, 2007 at 4:03 am
99People use CSS2 all the time, and they even already use parts of WHATWG HTML5 (like the CANVAS element, or contentEditable).
I do not believe that the W3C HTML WG will complete recommendation status by 2008; and neither do I believe that that WG shall be disbanded late 2010.
Specification are usable before being finished but not before those parts are incorporated into User Agents, e.g., browsers. Safari, Mozilla and Opera (since they’re the copyright holders) may be the first to include HTML5 elements and attributes once they become stable, Right?
Olimarr
April 5th, 2007 at 5:40 am
100helpful information me too thanks
Lasik München
April 11th, 2007 at 12:53 am
101Super Seite
Weiter so
David
April 12th, 2007 at 3:59 pm
102Really usefull, thank you. In my case, it was a difference of 3kb. But that 3kb more make the code much more easier to read, so i keep my 7kb .css-file, but I keep it in mind, you’ll never know, when such a tool will come in handy. Thanks again!
fee
April 15th, 2007 at 1:38 am
103*****I think these blog is really useful for new comers and Excellent resource list. It´s a very interesting Blog and simple answer of many questions.Keep up the good work!
Thanks it helps me a lot…****
samar
April 15th, 2007 at 5:04 am
104my webpage is so slow can it be faster
HTMLHelp.blog : CSS Optimization: Make Your Sites Load Faster for Free
April 17th, 2007 at 10:22 am
105[...] article excerpted from Blogging Pro and originally posted by David Peralty. While a lot of people are out to optimize their [...]
Maik
April 20th, 2007 at 6:25 am
106Great and excellent article it’s realy helpful.
Now my Page is running faster…
Flug
April 22nd, 2007 at 11:59 am
107But not faster then mine:)
tom
April 23rd, 2007 at 3:27 pm
108.very good
صور
May 1st, 2007 at 2:22 pm
109good work and great report
thank you for these information
Aprendiendo Hojas de Estilo (CSS) « Disenia
May 6th, 2007 at 9:00 am
110[...] CSS Optimization: Make your site load faster for free [...]
Onlineshop
May 13th, 2007 at 1:08 am
111I think these blog is really useful for new comers and Excellent resource list.
Its a very interesting Blog and simple answer of many questions.
Keep up the good work!
MillionPixelWebsite
May 24th, 2007 at 11:44 am
112This article would be much more interesting if you also included a column showing how large the files were after gzipping.
En vrac: quelques liens sur CSS « Le blog de patrick vergain
May 29th, 2007 at 6:45 am
113[...] de style alors pourquoi s’en priver ? Il existe de nombreux outils qui sont heureusement comparés sur cette page. J’utilise généralement CleanCSS car CSS Compressor m’enlève bien souvent trop de [...]
Online Shop
June 2nd, 2007 at 2:41 pm
114I think these blog is really useful for new comers and Excellent resource list.
It´s a very interesting Blog and simple answer of many questions.
Keep up the good work!
Tapeten
June 7th, 2007 at 12:35 pm
115Great and excellent article t’s realy helpful. Thanks again.
Wow. Very impressive.
webkatalog eintragen
June 8th, 2007 at 12:53 am
116Great and excellent article t’s realy helpful. Thanks again.
mirc
June 11th, 2007 at 4:21 pm
117thanks
Handwerkersoftware
June 11th, 2007 at 6:21 pm
118Also I rank myself among this majority. My interest lies not in the handling of a Programiersprache separates in the ability to learn of a technology for the publication of contents on my Website. With HTML4 I can begin already very much. But I am grateful and content.
Jetski
June 12th, 2007 at 1:52 am
119This site is very interesting.
versicherungsvergleich
June 12th, 2007 at 1:53 am
120Thanks it helps me a lot
Partnersuche
June 13th, 2007 at 6:39 am
121Thanks for very interesting article. btw. I really enjoyed reading all of your posts. It’s interesting to read ideas, and observations from someone else’s point of view… makes you think more. So please keep up the great work. Greetings
Bürobedarf
June 17th, 2007 at 12:30 am
122Thanks for very interesting article. btw. I really enjoyed reading all of your posts. It’s interesting to read ideas, and observations from someone else’s point of view… makes you think more. So please keep up the great work. Greetings.
Druckerpatronen online
June 19th, 2007 at 1:57 am
123I think these blog is really useful for new comers and Excellent resource list. It´s a very interesting Blog and simple answer of many questions.Keep up the good work!
Thanks it helps me a lot…
Freshwap
June 21st, 2007 at 2:36 am
124Thanks for very interesting article Keep it up man
thanks
Tom Erikson
June 21st, 2007 at 11:29 am
125Hello,
what a surprise to find a website with such a lot and useful informations.
I really have to say, thank you und greetings from germany
CSS Optimization » SilentBits | WordPress, Themes, Plugins, News, Blogging, Design, theme wordpress, plugins wordpress, blog wordpress, template wordpress, tip wordpress, tag wordpress, free theme wordpress, tutorial wordpress, blog theme wordpress,
June 22nd, 2007 at 7:55 am
126[...] CSS Optimization: Make Your Sites Load Faster for Free - great article that can help you with CSS optimization. [...]
Umweltschutz
June 23rd, 2007 at 2:52 am
127hi, sorry but my english language is verry. Thank’s for writhe a comment.
What I’m want to say is. in Gernan language. Thank’s for all.
Wir möchten Sie über biologische ökologische oder einfach natürliche Lebensweisen informieren. Wir wollen niemanden in seiner Haltung belehren oder in seinem Handeln beeinflussen, obwohl es in unserer Idee liegt, unsere Mitmenschen zu einem besseren Verständnis unserer Umwelt zu bewegen. Nachhaltigkeit kann unserer Leben, Denken, Fühlen, mehr und mehr beeinflussen, wenn man überzeugt davon ist, dass die Umwelt geschont werden muss.
Mark
June 30th, 2007 at 9:48 am
128Icey is the one that gives me better results
Mark - Web Developer - http://www.prepagateonline.com
torer
June 30th, 2007 at 9:51 am
129rrrrrrrrr
101 CSS Tips, Tutorials and Examples : lxpages.com blog
July 1st, 2007 at 6:30 pm
130[...] CSS Optimization: Make your site load faster for free [...]
Open Source Web Design » Blog Archive » 101 CSS Tips, Tutorials and Examples
July 3rd, 2007 at 7:19 am
131[...] CSS Optimization: Make your site load faster for free [...]
Matthew
July 5th, 2007 at 12:19 pm
132Yeah, it works! Thanks a lot!
Carol Ballontiere
July 10th, 2007 at 2:10 am
133Hello,
super website here, well done, and thank you for all the useful links and hints.
Bleebot | Christophe Lefevre » 101 astuces CSS, tutos et examples
July 10th, 2007 at 2:09 pm
134[...] CSS Optimization: Make your site load faster for free [...]
Share Download
July 12th, 2007 at 1:32 pm
135Nice Guides Thanks man
rageds
101 Tips, tutoriales y ejemplos «
July 17th, 2007 at 6:45 pm
136[...] CSS Optimization: Make your site load faster for free [...]
Robert Hamburg
July 22nd, 2007 at 8:17 am
137A very useful tutorial. Very helpful tips.
THX!
Pendrive
July 30th, 2007 at 3:51 pm
138It’s very good article. Great site with very good look and perfect information.
maca
August 4th, 2007 at 12:43 pm
139We need tools that convert the CSS to run faster not just load faster
sportnahrung
August 4th, 2007 at 12:44 pm
140where can i find some tutorials?
re-nature
August 11th, 2007 at 1:07 am
141Super der Blog.
ein Leben ohne css ist kein Leben
Roland
August 18th, 2007 at 5:32 pm
142Go for your ideas!
much regards from Germany
Roland
renatura
August 27th, 2007 at 11:51 pm
143my Blog (nature) it is running whis a css Layout.
css-works runs verry good for every page!!
wholesales jewelry
September 17th, 2007 at 3:20 am
144need tools that convert the CSS to run faster not just load faster
vlad
September 18th, 2007 at 6:31 am
145Very useful article
Thank you
daniela
September 27th, 2007 at 4:00 am
146muy interesante las informaciones, gracias
Sohbet Chat
October 7th, 2007 at 7:03 am
147I think the idea of writing a song about a great cms is nice and the final song is amazing!!
Rette die Erde!
October 15th, 2007 at 9:32 am
148Rette die Erde! Was wir tun müssen, damit die Menschheit überlebt?
Es brennt. An allen Ecken und Enden unseres Hauses lodern die Flammen. Die Hitze wird unerträglich. Wenn wir überleben wollen, müssen wir raus aus dem Haus. So schnell wie möglich. Es geht um unser Leben und das unserer Kinder. Doch wohin?
Wir sind gefangen auf einem Planeten, den wir selbst angezündet haben. Fast acht Milliarden Menschen in Not. Der Fluchtweg ist uns versperrt. Zwischen uns und einem möglichen sicheren Hafen liegen die unendlichen und unüberbrückbaren Weiten des Universums. Wir haben also keine andere Wahl, als selbst das Feuer zu löschen.
Jeden Tag verbrennen wir zehn Millionen Tonnen Erdöl, 12,5 Millionen Tonnen Steinkohle und 7,5 Milliarden Kubikmeter Erdgas. Wir verbrauchen und vergeuden Energie, als gäbe es kein Morgen mehr. Kein Wunder, dass die Atmosphäre unseres Planeten sich aufheizt. Weiter lesen: http://www.pikolo.de/main/av.php?Av=DP8.E7YX5;C=R1087;Y=browse.php
proxy site
October 16th, 2007 at 7:10 am
149hi, sorry but my Egyptian Dinka is verry. Thank’s for twitch a comment.
What I’m blank to say is. in Gernan Austronesian. Thank’s for all.
Wir möchten Sie über biologische ökologische oder einfach natürliche Lebensweisen informieren. Wir wollen niemanden in seiner Haltung belehren oder in seinem Handeln beeinflussen, obwohl es in unserer Idee liegt, unsere Mitmenschen zu einem besseren Verständnis unserer Umwelt zu bewegen. Nachhaltigkeit kann unserer Leben, Denken, Fühlen, mehr und mehr beeinflussen, wenn man überzeugt davon ist, dass die Umwelt geschont werden fray.
Free SMS senden
October 17th, 2007 at 5:38 am
150Thank you for the great article. Greetings from Germany.
DDT-MODELS
October 18th, 2007 at 6:32 pm
151Thanks for your work! Now let’s see how you’ll interact with all the junk coming from social blogs, social networks, social software and the whole good load from web 2.0
Tough luck on that!
Dennison Uy - Graphic Designer
October 19th, 2007 at 11:08 am
152Thanks for showing me this awesome article
I too shall blog about CSS Optimizers on CSS Vault soon. Watch out for it!!!
Tomasz Nastulak :: Blog » Optymalizacja CSS
October 20th, 2007 at 11:22 am
153[...] by było jeszcze trochę plik zoptymalizować. W teście narzędzi do optymalizacji CSS prym wiedzie Icey’s CSS Compressor i nic dziwnego, bo ten optymalizator potrafi zredukować [...]
DDT-MODELS
October 21st, 2007 at 3:47 am
154Word of Mouth is how people find my 300 classic entertainment variety videos- Youtube/ Google should pay more attention to producer’s who present quality entertainment and help to promote their channel or someday they may well find a better place to showcase their productions- Just a thought.. joelsamuelpresents
Apotheke
October 21st, 2007 at 7:16 pm
155Thanks for very interesting article. btw. I really enjoyed reading all of your posts. It’s interesting to read ideas, and observations from someone else’s point of view… makes you think more. It’s really good written and I fully agree with You on main issue, btw. I must say that I really enjoyed reading all of Your posts. It’s interesting to read ideas, and observations from someone else’s point of view…
DDT-WEBKINZ
October 22nd, 2007 at 11:56 pm
156You own my respect and gratitude. Thanks to your hard labour and persistance we have a magnificent web and together with other standards an easy to use enviroment. Thank you!
KATALOG
October 28th, 2007 at 11:02 am
157It’s very good article. Great site with very good look and perfect information.
osram sparlampe
October 28th, 2007 at 5:59 pm
158Thank You for another very interesting article. So please try to keep up the great work all the time. Greetings
DDT-MODELS
October 30th, 2007 at 4:30 am
159We wanted to clear up a misconception about the nine localized sites we launched on June 19: the content has not been “broken down” by region. All of your videos are available to everyone, no matter which site you set as your default.
Haidar
October 31st, 2007 at 8:52 am
160deinetrauer,Trauer,Todesanzeige,Anzeige online aufgeben,Danksagung, Beileid,Tod, Sterben, Gedicht, Kondolenz, Trost, Bestattung, Todesanzeigen,Jahres und Gedenktage
تصميم مواقع
November 10th, 2007 at 6:50 am
161Thank you very much for this article
sohbet
November 11th, 2007 at 6:52 am
162are you ridding
chat
November 11th, 2007 at 7:01 am
163standup
yellowpages
November 11th, 2007 at 7:50 pm
164Very useful article
Thank you
Mimul's Developer World
November 15th, 2007 at 4:57 am
165CSS 최적화: 여러분의 사이트를 공짜로 속도를 올리는 방법…
http://www.cleancss.com/...
burun estetiği
November 18th, 2007 at 7:19 am
166congrats. for css optimization.
sepl
November 18th, 2007 at 1:36 pm
167Thank you for this Article.
Travis
November 19th, 2007 at 5:41 pm
168It is amazing how much CSS we leave in the .css file and then delete the style on the webpage and forget that it was in the .css file……
thanks for reminding me to clean mine up!
Whatever-ishere
November 21st, 2007 at 9:54 am
169thanks for the GREAT post! Very useful…
CSSVault Blog » Blog Archive » Free CSS Optimizers To Improve Website Performance
November 21st, 2007 at 10:01 am
170[...] reading BloggingPro’s article on CSS Optimization, I have decided to come up with my own [...]
Blackmoon
November 26th, 2007 at 12:28 pm
171thanks for the article
Lars
November 26th, 2007 at 12:29 pm
172Helpful post big thanks, recommentable for every Siteadministrator
forum
November 26th, 2007 at 5:58 pm
173thanks
oyunlar
November 27th, 2007 at 12:49 pm
174thank you
Hillary
December 7th, 2007 at 12:25 am
175Found your site in google, and it has a lot of usefull information. Thanx.
Vlad
December 7th, 2007 at 8:43 am
176Nice
Leo
December 7th, 2007 at 2:13 pm
177Mini Storage
December 10th, 2007 at 9:32 pm
178Thank you very much for this article
pixeladas aleatórias ∙∙∙∙ CSS livre, leve e solto
January 15th, 2008 at 5:21 pm
179[...] CSS Optimization: Make Your Sites Load Faster for Free, no Blogging Pro; [...]
Compresores de CSS «
January 30th, 2008 at 3:07 am
180[...] http://www.bloggingpro.com/archives/2006/08/17/css-optimization/ [...]
raffyman
February 4th, 2008 at 5:19 pm
181It is amazing how much CSS we leave in the .css file and then delete the style on the webpage and forget that it was in the .css file……
thanks for reminding me to clean mine up!
Jerome Lapointe
February 7th, 2008 at 2:10 pm
182You get amazing compression from gzip… and run 0 risk of breaking any parts of the CSS. Even if I can cut down the weight by half with an optimizer… once compressed the real gain is 3 - 5 k. Of course, it’s not a technology thats available to everyone so optimizers may be useful to some…
Like others have mentioned (like Dave)… I’m not sure about the premise… Make the file lighter is not that useful… I’d be more interested in having it be interpreted faster… which probably means that your selectors need to be more precise… adding weight to the overall file.
That is a much more complicated process than cutting stuff out… I don’t think you can automate that all too well.
Rabin
February 8th, 2008 at 4:23 am
183Indeed a cool article. Thanks for sharing your thoughts!!