CSS Preprocessors & More

Intro

CSS is very powerful, but it isn’t a programming language. It only provides limited functionality and doesn’t support functions, ‘mixins’, loops, or other fancy features you might find in a real programming language. (Only recently did CSS start supporting variables.)

CSS Preprocessors are just that. They process special variants of the CSS language into CSS. This processing happens on the developers’ computers, long before the webpage user sees the CSS. CSS Preprocessors are powerful tools that can supercharge your ability to write great styles for your websites.

This requirement has information about CSS Linters (which make sure your CSS code is written correctly) and Post-Processors (which process your CSS after it was written or generated by a preprocessor). These are extra tools you can learn about, but not part of these requrements.

Suggested Learning

Hint: All of them are good, but Stylus is probably the easiest to get up and going with, and the website is simple to navigate. You should be familiar with all of them someday.

Requirements

CSS Preprocessors Reference

Extra Learning

A few other tools for you to study. These go above and beyond the scope of this requirement, but might be helpful for you in future projects:

Post-Processors

Linting & Static Analysis

Redundancy and Unused Styles

Minifiers

This list is by no means complete. Feel free to add an issue or put in a pull request to update it.