cssbeautify icon indicating copy to clipboard operation
cssbeautify copied to clipboard

Order all properties alphabetically?

Open fortes opened this issue 10 years ago • 2 comments

Would it be possible to support re-ordering CSS declarations to be in alphabetical order? E.g.:

body {
  font-family: Georgia;
  color: blue;
  text-decoration: underline;
}

Would become:

body {
  color: blue;
  font-family: Georgia;
  text-decoration: underline;
}

fortes avatar Jun 16 '14 23:06 fortes

Try css comb http://csscomb.com/online

chrisl8888 avatar Aug 21 '14 16:08 chrisl8888

Would also like this functionality. It makes writing tests much easier.

milesj avatar Dec 28 '16 21:12 milesj