vote up 1 vote down star
1

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;
}
flag

8% accept rate

4 Answers

vote up 2 vote down

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

link|flag
vote up 2 vote down

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

link|flag
I am using online ones. – Abdu Oct 22 '08 at 6:46
vote up 2 vote down

Try this.

link|flag
vote up 0 vote down

Are you looking for a stand-alone tool?

link|flag
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

Get an OpenID
or

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