SASS (Syntactically Awesome Style Sheets) is a pre-processing scripting language that is compiled and interpreted into CSS. SCSS (Sassy Cascading Style Sheets) was brought in as the main syntax for SASS, which builds on top of the CSS syntax. CSS is a subset of SCSS, i.e., all the features in CSS are available in SCSS in addition to the features of SASS.
SASS is used when original code syntax has to be followed for development.
SASS can be integrated in any kind of project since it is compatible with all versions of CSS.
Supports any operating system.
Less syntactical constraints than SCSS.
Much bigger community of contributors consisting of developers and designers.
Licensed under MIT license.
Provides documentation in the form of SassDoc.
SCSS is used when there is no specific requirement of a code syntax to be used.
SCSS can also be incorporated into any kind of project since it is a superset of CSS.
Supports cross-platform operating systems.
Relatively more syntactical constraints.
Smaller community of contributors resulting in much less individual support.
Licensed under MIT license.
Provides inline documentation within the code.
RELATED TAGS
View all Courses