cssbeautify
cssbeautify copied to clipboard
Order all properties alphabetically?
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;
}
Try css comb http://csscomb.com/online
Would also like this functionality. It makes writing tests much easier.