SASS Syntax
Syntax of sass
Sass have two syntax one is rubby language syntax and other is CSS syntax. Scss syntax is same like CSS and sass have same like rubby programming language syntax.
CSS3 Syntax
The sass new main syntax (as of Sass 3) is known as SCSS (for Sassy CSS), and is a superset of CSS3's syntax. This means that every valid CSS3 stylesheet is valid SCSS as well. SCSS files use the extension .scss.
- It syntax is similar to rubby.
- Here no uses of braces.
- No strict indentation
- No semi-colons
- Variable sign in sass is ! instead of $.
- Aassignment sign in sass is = instead of :
Example of sass
// Variable declare !colorRed= red #header margin: 0 border: 1px solid $colorRedp color: $colorRed font: size: 12px weight: bold
Rubby Syntax
The second, older syntax is known as the indented syntax (or just "Sass"). Inspired by Haml's terseness, it's intended for people who prefer conciseness over similarity to CSS. Instead of brackets and semicolons, it uses the indentation of lines to specify blocks. Although no longer the primary syntax, the indented syntax will continue to be supported. Files in the indented syntax use the extension .sass.
- It syntax is similar to CSS.
- Here we uses of braces.
- Use semi-colons
- Variable sign in scss is $.
- Aassignment sign in scss is :
Example of scss
// Variable declare $colorRed= red; #header { margin: 0; border: 1px solid $colorRed;p { color: $colorRed; font: { size: 12px; weight: bold; } }