I want to format my css files used in my web project.
Formatting means: Compress/Uncompress CSS file
Example:
*{margin:0;padding:0;}body{min-height:101%;font:69%/141% Arial,Helvetica,sans-serif;color:#2d3742;}
to:
* {
margin: 0;
padding: 0;
}
body {
min-height: 101%;
font: 69%/141% Arial,Helvetica,sans-serif;
color: #2d3742;
text-align: center;
background: #fff url('../gfx/bgs/bg-body.gif') repeat-x;
}
It is pretty easy to do this with TextMate which I’m using at home. But how can I do it with Visual Studio? (couldn’t find that feature) Or if there is no way to do it with VS, is there any windows program your aware of that is providing this feature?
Thanks a lot.
You can compress these quickly online with the CSS Compressor. And fix the compression using the answer provided in another solution: ctrl+k+d.