2

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.

1

3 Answers 3

2

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

Sign up to request clarification or add additional context in comments.

Comments

2

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

2 Comments

+1 good answer. To the OP, you can use CTRL+K+D to format almost any file type (CSS, HTML, ASPX, XML, C#, VB, ETC). CTRL+K+F is an alternate keystroke which will format only the highlighted area.
@KP Cool I didn't know the alternate one, thanks for the tip. +1
0

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

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.