On Declaration Sorting in CSS
Published on September 24, 2014 (⻠February 5, 2024), filed under Development (RSS feed for all categories).
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 (long: Jens Oliver Meiert), and Iâm a frontend engineering leader and tech author/publisher. Iâve worked as a technical lead for companies like Google and as an engineering manager for companies like Miro, Iâm a contributor to several web standards, and I write and review books for OâReilly and Frontend Dogma.
I love trying things, not only in web development (and engineering management), but also in other areas like philosophy. Here on meiert.com I share some of my experiences and views. (Please be critical, interpret charitably, and give feedback.)
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 of interest to you, too:
- Next: CSS, DRY, and Code Optimization
- Previous: On Net Neutrality
- More under Development
- More from 2014
- Most popular posts
Looking for a way to comment? Comments have been disabled, unfortunately.
Get a good look at web development? Try WebGlossary.infoâand The Web Development Glossary 3K. With explanations and definitions for thousands of terms of web development, web design, and related fields, building on Wikipedia as well as MDN Web Docs. Available at Apple Books, Kobo, Google Play Books, and Leanpub.