What PostCSS Does and How It Works
Understand PostCSS as a CSS transformation tool powered by JavaScript plugins.
What is PostCSS?
PostCSS is a CSS transformation tool — not a language extension like Sass, but a JavaScript-powered processor that transforms standard CSS through plugins. Its plugin architecture makes it highly composable.
PostCSS vs Sass
Sass is a preprocessor with its own language features. PostCSS is a transformation pipeline that operates on standard CSS. They can be used together: Sass compiles first, then PostCSS applies further transformations.
All lessons in this course
- What PostCSS Does and How It Works
- Autoprefixer and cssnano
- Custom PostCSS Plugins
- PostCSS in Vite and Webpack