cssDeclarationSorter

Sorts CSS declarations based on their property names, sorted CSS is smaller when gzipped because there will be more similar strings.

Example

Input

body {
    animation: none;
    color: #C55;
    border: 0;
}

Output

body {
    animation: none;
    border: 0;
    color: #C55;
}