|
|
|
|
|
by mandazi
3516 days ago
|
|
Sometimes I feel like I am behind with CSS. I have not used LESS or SASS or any others on any production application that I work on. It's usually Bootstrap and then custom CSS to override. I have messed around and learned the basics of LESS/SASS but nothing beyond that. Am I behind? |
|
The good thing about SASS (or, well, SCSS, which is what you would want to use) is that it integrates directly with CSS, so you can start utilizing it in your existing CSS files without having to convert the stylesheets to SCSS. You would just need to run those files through the preprocessor.
There's a lot to learn and a lot you can do, but you can always start with the simple stuff (such as using variables to collect all color codes in one place, etc), and gradually introduce more SASS code as you learn about it and have the time to implement it.