Is it necessary to learn LESS or SASS ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Is it necessary to learn LESS or SASS ?

What are the benefits of learning this ? If we already are familiar with css .

26th Sep 2019, 11:18 AM
Jaspreet Singh
Jaspreet Singh - avatar
1 Answer
+ 3
It's not "necessary", but 90% of the time, it's worth it. *One of the benefits of learning a css preprocessor is that you can use variables, in other words, you won't have to keep track of a specific color's RGB value. *Another benefit is modularity. You can split your css into multiple files and then compile them into a single file, OR You can compile them separately and just import what you need. SCSS ===== $my_color: #9a2d68; .header{ color: $my_color; } You can "Define Once, Use Anywhere"
26th Sep 2019, 12:04 PM
Dlite
Dlite - avatar