Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm searching for a good CSS compress, merge and optimization tool. I have found tools that clean the CSS but they don't optimize the overwrites.

Here is a basic example:

a{color:#000}

and on another line the a color is overwritten with this:

a{color:#fff}

Does anyone know of a tool that can clean the unused CSS, that was overwritten and keep just the applied style?

share|improve this question
I edited the title. Just "compression" and "minifying" are orthogonal to actual smart-optimization of CSS. This is a fairly interesting question, although I would normally vote-to-close such "find me a tool" questions .. – user166390 Sep 16 '12 at 23:06
CodeKit is a OS X application for things like that. Not sure if it does the specifics though. – Whymarrh Sep 16 '12 at 23:07
Tks pst .Tks Whymarrh,but I can't test CodeKit app, I'm a Win/Linux user :) – Lucian Povatanu Sep 16 '12 at 23:30
@LucianPovatanu maybe something from this question will help. – Whymarrh Sep 18 '12 at 17:38
@Whymarrh tks for that link, but what I was asking is a tool that can clean used or unused css overwrites, so an "unused css cleaner" isnt the answer. – Lucian Povatanu Sep 19 '12 at 13:36

3 Answers

up vote 2 down vote accepted

Devilo.us merges all duplicates.

share|improve this answer

I don't particularly understand what you mean by "clean unused CSS", but in any case, I'll throw two tools at you, and maybe one will work (the good ol' shotgun approach).

CSS Lint seems to point out "duplicate properties". There are a range of articles covering some of what it does. But a test with the two definitions you had,

a { color: #fff; }
a { color: #000; }

it didn't do much of anything. While ...

Code Beautifier did combine the two selectors, opting for the latter of the two (i.e. the style that's actually applied). Resulting in:

a {
  color:#000;
}
share|improve this answer
"Merge duplicate properties" is the tool that I was searching, tks @Whymarrh – Lucian Povatanu Sep 22 '12 at 1:25

This is pretty awesome: http://www.milienzo.com/2007/08/07/clean-up-your-css-with-firefox-plugin/ Works straight in Firefox. Alternatively you can use Adobe Dreamweaver it's pretty good for checking CSS.

share|improve this answer
1  
This tool depends on how big your site is - the sites I maintain are very large, with parts in a CMS and this tool could not tell me accurately what wasn't being used in the whole thing. Might work better for small sites. – zenkaty Sep 16 '12 at 22:59
I tried, not good :) , because is searching for CSS elements that you are using on your pages and removes the elements that you don't use at that time on those pages. – Lucian Povatanu Sep 16 '12 at 23:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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