road242
road242

Reputation: 2532

Format CSS file (compress/uncompress)

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.

Upvotes: 2

Views: 3321

Answers (3)

Jitendra
Jitendra

Reputation: 1117

you can use Css compressor to compress single or multiple css files

Upvotes: 0

Gabe
Gabe

Reputation: 50493

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 :)

Upvotes: 2

Sampson
Sampson

Reputation: 268354

You can compress these quickly online with the CSS Compressor. And fix the compression using the answer provided in another solution: ctrl+k+d.

Upvotes: 2

Related Questions