Possible Duplicate:
Any recommendations for a CSS minifier?
JsMin is a compression and combination executable for javascript files. Is there something like that for CSS files?
JsMin is a compression and combination executable for javascript files. Is there something like that for CSS files? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Google #1 result for CSS compression: http://www.refresh-sf.com/yui/ |
|||
|
|
CSS cannot be minified in the same way that JavaScript can. You can replace variables such as That being said, you can remove white-space and comments from CSS files. There are several tools that exist for doing this - the YUI Compressor is a popular option from Yahoo!. There's a lot you yourself can do also to keep your CSS files lightweight. Remove unused selectors, reduce redundancy, and try to join many rules:
Is a bit verbose; better to write it as:
Saves a tremendous amount of space. Another thing to look out for is adding unnecessary characters to rules. For instance, when you are setting paddings and margins, there's no need to add a unit after your 0 values:
A lot of this stuff can be fleshed out by using a great tool like the CSSLint, online at http://csslint.net/. Warning: CSSLint will hurt your feelings! |
||||
|
|
|
Yes, you can visit this : |
|||
|
|