Source: dzone.com

Introduction to SCSS
If you’re new to SCSS and you really haven’t read much about it you should definitely read this blog to get all the information. Sass (Syntactically awesome style sheets) is a style sheet language initially designed by Hampton Catlin and developed by Natalie Weizenbaum.

The ".scss" file extension and is fully compliant with CSS syntax and .sass is not fully compliant with CSS syntax, but it's quicker to write.

You can create partial Sass files that contain little snippets of CSS that you can include in other Sass files, i.e. variable.scss, fonts.scss, buttons.scss, etc., and then we can include all SCSS files in the main/style.scss folder.

Let’s say you have created multiple files and that you need to import them into the main.scss file: The only drawback is that a separate HTTP request gets triggered for each CSS file that you are importing.

Related Articles