Last updated
Was this helpful?
Last updated
Was this helpful?
A Node.js module and plugin to sort CSS declarations based on their property names. Ensuring the CSS is organized, more consistent and in order... Besides, sorted CSS is smaller when gzipped because there will be more similar strings. The intention of this module is to sort the source CSS code of a project in the build process. Check out for individual usage.
Input:
Output:
Sort using your own defined order.
Nested rules sorting support.
Thought-out sorting orders out of the box, approved by their authors.
Alphabetically
alphabetically
Default, ordering in a simple alphabetical manner from a - z.
Box
Border
Background
Text
Other
Positioning
Visibility
Box model
Dimensions
Text
Custom order Provide your own order by passing the location of a JSON file containing an array.
npm install css-declaration-sorter --save-dev
Piping out result from file:
postcss input.css --use css-declaration-sorter | cat
Sorting multiple files by overwriting:
postcss *.css --use css-declaration-sorter --replace --no-map
Up-to-date CSS properties fetched from the .
Less and SCSS support when combined with either or .
smacss
Ordering from most important, flow affecting properties, to least important properties.
concentric-css
Starts outside the box model, moves inward.
This module does not include its own CLI but works with the official . To use the examples below, install postcss-cli
or prefix with npx
.
See documentation for more examples and other environments.