linkedin tracking
icon-sprite Created with Sketch.
Skip to main content
That PostCSS. It’s so hot right now July 14, 2015
Mobile & Web

That PostCSS. It’s so hot right now

reading time
Photo of David Putney

Written by

David Putney

Share this article

Web developers suffer from the worst kind of imposter syndrome.

My theory is that it’s because devs are faced with a constant barrage of the new hotness. Generally it goes something like this:

  • 9 a.m. “OMG! They just released Widget.js this morning and it’s amazeballs awesome! Everyone is using it! I’m moving all my projects to it!
  • 5 p.m. “What? Are you still using Widget.js? LOL! Dingus.js just came out this afternoon and it’s amazeballs awesome!

CSS preprocessors have been on this new hotness treadmill for a few years. We have SASS that supplanted LESS and now Stylus aims to replace SASS1. Into this enters PostCSS2.

Oh, great another preprocessor. Eye roll. Another new thing to learn just to do my job.

But what if it offers something significantly different than the other three? Might it be worth it?

PostCSS comes at the problem from another direction. Preprocessors are all elaborate hacks. They aim to solve problems inherent in CSS, mainly that CSS is pretty dumb compared with JavaScript.

The programmy stuffloops, logic variables and other niceties—added by preprocessors makes CSS a lot more usable.

If we were to play the One of these things is not like the other game from Sesame Street, PostCSS is the outlier. Rather than just solving problems inherent in CSS it also aims to solve problems with preprocessors themselves.

LESS, SASS and Stylus are powerful but monolithic—web developers write against an established list of functions that the preprocessor offers. Preprocessor code is centrally maintained. Additional features and functions come with an update.

PostCSS resembles the task runners Gulp or Grunt in that all alone it doesn’t actually do anything. Its power comes from plugins written in JavaScript. And those plugins can do anything a developer might need. Theoretically, at least.

Like Gulp and Grunt it’s meant to be extensible, flexible and customizable for a developer or project’s particular needs.

Those who use Gulp or Grunt for their projects will likely find even more to like. PostCSS runs on Node and installs via NPM. This is the install code for Gulp. It should be familiar.

$ npm install --save-dev gulp-postcss

This allows PostCSS to fit easily into existing Grunt or Gulp workflows. In Gulp, it’s included like any other task. NPM also installs the plugins, and they can be saved as dev dependencies.

To use them, pass plugins to the PostCSS task as an argument. If there’s more than one, use square brackets.

Here’s Gulp code for adding an autoprefixer:

var postcss = require('gulp-postcss')
var autoprefixer = require('autoprefixer-core');
gulp.task('css', function () {
    var processors = [
    	autoprefixer({browsers: ['last 1 version']})
    ];
	return gulp.src('./src/*.css')
	.pipe(postcss(processors))
	.pipe(gulp.dest('./dest'));
});

Because of the modular nature of PostCSS, getting it up and going is more involved than installing SASS or LESS. On a basic level, using it involves figuring out what you need your preprocessor to do—loops, nesting, variables, autoprefixing, etc—and getting everything in place.

For a developer comfortable in the command line—comfortable enough to troubleshoot errors and sift through occasionally poor documentation PostCSS can still feel sort of like assembling a chest of drawers from Ikea.

For someone not as well-versed, perhaps someone trying to graduate from CodeKit to Gulp, PostCSS can feel more like being presented with a pile of parts and asked to assemble them into a Formula 1 car.

But in the end you do get something powerful. Several-dozen plugins offer enough interesting functionality to get even the most cranky developer excited. Here’s a few:

  • cssnext Allows developers to use future CSS features now, but it compiles them into current standards.
  • postcss-conic-gradient Supports conic gradients, although such gradients only work with a polyfill.
  • cssgrace Compiles CSS3 for backward compatibility with older versions of Internet Explorer.
  • postcss-vertical-rhythm Adds vertical rhythm to styles.
  • lost One of several grid systems available as a plugin.
  • css2modernizr Creates a Modernizr config file based on your CSS so you get only the functions you need.
  • postcss-spiffing Lets you use British spellings such as “colour” and “grey” in your code.

The quality of these plugins is an open question. But users of Grunt and Gulp and other task runners have accepted this risk already with their own plug-in based build systems.

Preprocessors also add a layer of complication—another thing to learn, another thing to deal with—when shipping code. If a developer chooses to go the Gulp or Grunt route, that’s more of workflow complication. The PostCSS plug-in structure can seem like more cogs for a machine that can already feel on the verge of smoking and clattering to a halt.

The plug-in based structure poses an even larger question. The monolithic structure of LESS, SASS and Stylus can be a weakness, but it’s also a considerable strength.

When writing code in these, a developer is writing to a standard. They are themselves languages. Anyone can pull the code and compile it against a preprocessor.

Likewise, anyone versed in SASS should be able to read and understand anyone else’s code written in SASS.

With PostCSS, it’s not quite as simple. Code is written against and compiled by a list of dependencies—often a long list. These dependencies might change unexpectedly, be deprecated or become unavailable altogether.

The uncompiled source code might only be understandable by the team or developer who writes it. The code is harder to share on Github. Future technical debt should figure heavily into any choice to go with PostCSS.

Moving a project from SASS to PostCSS might take some work too. I spent a couple hours trying to line up the right mix of plugins to get some existing SASS code to compile, but without success.

Developers depending on SASS mixin libraries such as Bourbon and Neat might face considerable difficulty porting projects over. Although I’m not discounting that someone with more will and knowledge than me couldn’t eventually get it to work.

Small glitchiness also proved problematic. Global variables didn’t work across partial stylesheets. I like to keep my variables in a single partial, and I never found a fix for this. Sometimes just the order of plugins affected my outcomes.

It comes down to weighing quite a few factors before making a decision.

Business theorist Clayton Christensen—the “disruption guy”—has argued that just being better isn’t enough to get someone to switch products or services. Anxiety about leaving the old product and adopting the new one has to be overcome.

To be honest, PostCSS comes with a lot of questions to be considered. I’m not sure I would want to embark on a large project with PostCSS as my main solution, at least not yet. As the old saw goes, “No one ever got fired for buying IBM.” Established preprocessors seem the safe choice right now.

But I could see it fitting into a workflow to supplement SASS or LESS or Stylus with features those preprocessors don’t have yet.

Even if the final call is to forgo PostCSS this time, the technology is certainly worth watching. On a podcast last week, analyst Horace Dediu said that criticizing products too early is a mistake. It’s like looking at a baby and thinking that it’s not a very good human. Look, it can’t even walk! We should judge by potential.

And PostCSS seems like a tool with enormous potential, that is if enthusiasm around it grows and it gets a solid developer community behind it.

Or it may just turn out to be yet another old new hotness. Hopefully not.

  1. SASS seems to have won the day right now, at least. 

  2. The PostCSS people really need to do something about that logo, though. It looks like something the Blair Witch would draw in the dirt outside someone’s tent. 

Insights

Contact us

Talk with our experts today

Tell us how you need help. We’ll be in touch.

Thank you! Your message has been sent!

We’ll be in touch.

Want to know more about Cantina? Check out our latest insights or join us at one of our upcoming events.