SASS

SASS

Sass (which stands for ‘Syntactically awesome style sheets) is an extension of CSS that enables you to use things like variables, nested rules, inline imports and more. It also helps to keep things organised and allows you to create style sheets faster.Sass is compatible with all versions of CSS. The only requirement for using it is that you must have Ruby installed.Sass is an extension of CSS that adds power and elegance to the basic language. It allows you to use variables, nested rules, mixins, inline imports, and more, all with a fully CSS-compatible syntax. Sass helps keep large stylesheets well-organized, and get small stylesheets up and running quickly.

Syntax

Sass includes two syntax options:
  • SCSS (Sassy CSS): Uses the .scss file extension and is fully compliant with CSS syntax Indented (simply called ‘Sass’):
  • Uses .sass file extension and indentation rather than brackets; it is not fully compliant with CSS syntax, but it’s quicker to write