Developer

Autoprefixer helps me write better code

Published September 14th, 2018
CSS

Important: The information in this article is over 12 months old, and may be out of date or no longer relevant.

But hey, you're here anyway, so give it a read see if it still applies to you.

In a perfect world, everyone would play by the same rules. But the web isn't perfect. And different browsers need different helping hands to play the same game.

Enter vendor prefixes.

Admittedly modern browsers are a lot better at reading the same language, but still need a helping hand from time to time. Because they feel they can do better. Whatever. Have we not learned anything from those horried IE6-8 days? Anyway...

When I save my LESS or SCSS, CodeKit handles my compilation, and also runs Autoprefixer on the CSS file. What does it do?

It turns this:

1.container {
2 display: flex;
3 flex-direction: column;
4 width: 100%;
5 transition: all 0.3s;
6 box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
7}
Copied!

Into this:

1.container {
2 display: -webkit-box;
3 display: -ms-flexbox;
4 display: flex;
5 -webkit-box-orient: vertical;
6 -webkit-box-direction: normal;
7 -ms-flex-direction: column;
8 flex-direction: column;
9 width: 100%;
10 -webkit-transition: all 0.3s;
11 transition: all 0.3s;
12 -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
13 box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
14}
Copied!

But why is it better?

I find there are two reasons:

1. My pre-complilation code is easier to read (and write)

If every browser played the same game with "display: flex;" we would be all set. But Microsoft and Webkit browsers still need a prefix, and having to write the prefixes every time I want to use "display: flex" (or any of the other properties that need prefixing) is such a task.

The shorthand of "display: flex;" is just so easy to read - it means my declaration for the .container is simple and I can quickly scan and read every line without having to skip duplicated prefixed lines.

As you can see, as soon as we add "flex-direction", we get 4 lines to define it for all browsers. I know I want my container to be a flex parent with a column of elements - so let me be clean and concise in saying just that, and not have to worry about remembering every prefix option.

With large projects, readability of code is so crucial.

2. My code is less error-prone

If I have to to remember to prefix every property every time, let's face it, I'll forget something somewhere, and then wonder why Safari on iOS decides to behave differently.

Using Autoprefixer takes the responsibility from me, and when using CodeKit, it never forgets I want it done, so I know my final compiled CSS will be ready for any browser. This means I can spend more time on writing more code, rather than remembering every nuance of every vendor prefix.

You may be interested in...