Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't find a css formatter (web based or Windows app) which formats the css where it puts the open brace on its own line aligned with its close brace, plus indents the attributes. The web based css formatters out here seem to be based on CSSTidy which doesn't do what I want.

I don't like this CSSTidy format:

.example {
font-size: 3em;
}

I want:

.example
{
    font-size: 3em;
}
share|improve this question

5 Answers

up vote 5 down vote accepted

Try FormatCSS.

share|improve this answer

What you want is the 'GNU' style; Use ProCSSor, its great.

share|improve this answer
2  
This is the best one out there in terms of options and in terms of beauty. – JonKratz Jun 13 '11 at 22:45
ProCSSor is awesome. I only wish it had an option to keep semicolons at the end of lone properties. I don't like omitting the semicolon, ever; it's confusing to people. – dgw Sep 17 '11 at 6:01

you do know that you can modify the tpl files to make the modification you are looking for in CSSTidy?

share|improve this answer
I am using online ones. – Abdu Oct 22 '08 at 6:46

If that's your only beef with CSSTidy, you can always modify it to do that one little thing; and still take advantage of its other features (which may be lacking in other products).

share|improve this answer

Are you looking for a stand-alone tool?

share|improve this answer
Online or stand-alone. Should be configurable to a big degree. For example I like 2 blank lines between classes or id's. – Abdu Oct 30 '08 at 17:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.