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 t开发者_C百科his 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.
If I understand your question, you can well form the doc with key sequence
ctrl + k + d in Visual Studio
....
Thanks Jonathan Sampson for the <kbd>
tags :)
you can use Css compressor to compress single or multiple css files
精彩评论