show/hide this revision's text 2 edited title

CSS editor wich which expands one-line declarations on editing

show/hide this revision's text 1

CSS editor wich expands one-line declarations on editing

Is there a CSS editor which automatically expands one-line declarations as multi-line declarations on focus ? To clarify my thought, see example below:

Original CSS:

div#main { color: orange; margin: 1em 0; border: 1px solid black; }

But when focusing on it, editor automatically expands it to:

div#main { 
  color: orange; 
  margin: 1em 0; 
  border: 1px solid black; 
}

And when it looses focus, editor again it automatically compresses it to one-line declaration.

Thanks.