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