What's the difference between CSS3,SASS,SCSS? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What's the difference between CSS3,SASS,SCSS?

Differences between the CSS variations

4th Feb 2021, 10:36 PM
Rohi
Rohi - avatar
1 Answer
+ 1
SASS (Syntactically Awesome Style Sheets). SASS is a superset (extension) of CSS3 and provides extra functionality such as nesting, variables, mixins etc… SASS can generate CSS files on the fly as you edit them. Sass is processed server-side using Ruby. SASS uses line breaks and indentation to determine rule separations much like HAML. SCSS (Sassy Style Sheets). SCSS is functionally the same as SASS except it uses curly braces to separate rules. Resource: https://www.sitepoint.com/css3-compass-sass/
6th Feb 2021, 8:30 AM
Chris Coder
Chris Coder - avatar