On Declaration Sorting inĀ CSS
Post from September 24, 2014 (ā» October 19, 2022), filed under Web DevelopmentĀ (feed).
This and many other posts are also available as a pretty, well-behaved ebook: On Web Development. If the optimization of CSS is of particular import to you, Iāve collected several concepts in a brief book: CSS Optimization Basics.
I keep on seeing people advocate to sort declarations āby type.ā And every time I wonder, why is this idea still going around?
Type sorting is extraordinarily ineffective, for itās extremely slow and consistently unreliable (or reliably inconsistent). Even lead developers are witnessed to forget and break the type sorting rules they put in place. On top come type sortingās problems dealing with the constant influx of new properties that regularly threatens re-categorization. Accordingly, we observe CSS sorting scripts to require to maintain property tables and such. Type sorting is just not an efficient, nor a practical way of sorting declarations.
/* Type Sorting */
foo {
position: absolute;
top: 0;
right: 0;
width: 100px;
height: 100px;
background: #000;
color: #fff;
font-family: fantasy;
font-size: 1.5em;
}
In comparison, declarations are easily sorted alphabetically. Alphabetical sorting is so easy that it has over the years (and Iām sure someone had standardized it before 2008) turned out to be the fastest and most reliable way of sorting declarations. Itās simple to automate (tools like Clean CSS offer it for a while), but works reliable when done manually, too.
/* Alphabetical Sorting */
bar {
background: #000;
color: #fff;
font-family: fantasy;
font-size: 1.5em;
height: 100px;
position: absolute;
right: 0;
top: 0;
width: 100px;
}
Based on many years of experience in many different environments I can only, and that strongly, recommend to sort declarations alphabetically. We can just keep things simple. The only other alternative that means little work for us is not sorting. And not sorting is not useful, for structured code is more manageable and more maintainable code.
With that said, where it gets dicey and where weāre falling short instead is sorting of selectors and rules. I believe a few of us have tried to come up with an organized attempt at selector and rule sorting, too, but what we haveāand I would like to chip in last yearās comprehensive selector order draftācan probably be improved. An additional challenge, due to the cascade we donāt have a good lever to crack this with tools. I think selector and rule sorting would be a more interesting topic for us to tackle than making our lives unnecessarily complicated by sorting declarations āby type.ā
About Me

Iām Jens, and Iām an engineering lead and author. Iāve worked as a technical lead for Google, Iām close to W3C and WHATWG, and I write and review books for OāReilly. I love trying things, sometimes including philosophy, art, and adventure. Here on meiert.com I share some of my views andĀ experiences.
If you have a question or suggestion about what I write, please leave a comment (if available) or a message. ThankĀ you!
Comments (Closed)
-
On September 24, 2014, 17:57 CEST, Brad Czerniak said:
How do you deal with prefixed properties?
-
On September 24, 2014, 18:03 CEST, Jens Oliver Meiert said:
The same way, though I think what weāve standardized at Google works, too.
-
On September 24, 2014, 18:12 CEST, David said:
I too never understood why ‘by typeā was more efficient or preferable. Iāve always sorted alphabetically. I manually write in a compressed format and find it to be wonderful to scan large CSS files quickly when alphabetized.
Brad - If youāre using Less, Sass, etc., most pre-processing scripts/applications use auto-prefixing scripts in their build process. This eliminates the need to worry about prefixing.
-
On September 24, 2014, 18:25 CEST, Rupert Breheny said:
Nice post Jens, and I have you to thank for my alphabetic approach now. There are a couple of caveats: specifically vendor prefixes being shuffled to the top of a style block.
SORTED -webkit-transform: rotate(45deg); position: absolute; transform: rotate(45deg);
There can also be issues of course with overrides to shorthand:
NOT SORTED border: 1px solid red; border-width: 10px 1px;
Sorting that would break the intended behaviour. Otherwise the exceptions that prove the rule?
-
On September 24, 2014, 19:04 CEST, Vadim Makeev said:
Since you can use CSScomb plugin for your code editor (or grunt plugin for post-processing) sorting by type is useful again. CSScomb is not just a tool for sorting, itās also formatter.
Personally I canāt live without sorting because when I work with
width
I needheight
as close as possible, notwhite-space
; I needbottom
right afterposition
not afterborder
;font
is pretty useless close tofloat
, etc.Thereās also easy sorting way, to have groups:
1. Positioning and block properties (float, dimensions)
2. All sorts of colour decoration (border, background, box-shadow)
3. Text (obvious)
4. Special effects (opacity, transitions, etc.).Have you actually tried it?
-
On September 25, 2014, 13:33 CEST, Jens Oliver Meiert said:
I had checked out CSScomb, Vadim, and it looks great š
Alas (when it comes to sorting), as great as it is for automation, it doesnāt solve the issue that type sorting is too cumbersome to be a manual option (I do believe we need something that works for manual sorting, too). And I think CSScomb also struggles dealing with new properties and re-categorization, but maybe you can share more? (I just checked out the docs again but canāt find how it handles type sorting exactly.)
Read More
Maybe this is interesting to you,Ā too:
- Next: CSS, DRY, and CodeĀ Optimization
- Previous: On NetĀ Neutrality
- More under Web Development, or fromĀ 2014
- Most popular posts
Looking for a way to comment? Comments have been disabled,Ā unfortunately.

Get a good look at web development? Try The Web Development Glossary (2020). With explanations and definitions for literally thousands of terms from Web Development and related fields, building on Wikipedia as well as the MDN Web Docs. Available at Apple Books, Kobo, Google Play Books, andĀ Leanpub.