Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between css, scss, sass, and less? [duplicate]

Tags:

html

css

sass

less

I've developed websites about two years but I've never used scss, sass, or less. What is the difference between them and advantages of using them?

like image 231
Ilkin Abdullayev Avatar asked Nov 21 '25 09:11

Ilkin Abdullayev


1 Answers

CSS is the language for styling web pages.

LESS, SASS and SCSS are pre-processors that allow a few additional features. They output a .css file for the website to use.

like image 135
Karl Brown Avatar answered Nov 22 '25 22:11

Karl Brown