July 2018
Beginner
350 pages
8h 34m
English
Working with CSS tools such as preprocessors and postprocessors makes a big difference in helping us write and maintain CSS code.
However, they do not solve the entire problem when we have to deal with a bigger code base of CSS in bigger projects. The biggest issue with CSS itself is its nature—how it works—for example, every style that we define is globally applied to every website or web application page we have as long as our CSS file is included there.
To solve this problem, usually we have to apply different and longer class names, which becomes a big mess when it comes to maintaining that code.
To avoid these issues during our development process, we have to follow some guidelines or rules that will allow us to have ...