We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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; }
The text was updated successfully, but these errors were encountered:
Try css comb http://csscomb.com/online
Sorry, something went wrong.
Would also like this functionality. It makes writing tests much easier.
No branches or pull requests
Would it be possible to support re-ordering CSS declarations to be in alphabetical order? E.g.:
Would become:
The text was updated successfully, but these errors were encountered: