Google News
logo
Sass - Interview Questions
What are the main differences between SCSS and SASS?
The main differences between SCSS and SASS :
 
* SASS is like a CSS preprocessor. It has the extension of CSS3. SASS is derived from another preprocessor known as Haml (HTML abstraction markup language).

* SASS contains two types of syntax: "SCSS" is the first syntax, and it uses the extension of .scss. Indented syntax or "SASS" is the other syntax, and it uses the extension of .sass

* You can covert the valid CSS document into SASS by simply change the extension from .CSS to .SCSS.

* SCSS is fully CSS compatible. It provides CSS-friendly syntax to closing the gap between SASS and CSS. SCSS is called Sassy CSS.
Advertisement