Sass Tutorial
Sass Useful Resources
Selected Reading
- Extending Sass
- Sass - Output Style
- Sass - Function Directives
- Sass - Mixin Directives
- Control Directives & Expressions
- Sass - @-Rules and Directives
- Sass - Script
- Sass - Comments
- Sass - CSS Extensions
- Using Sass
- Sass - Syntax
- Sass - Installation
- Sass - Overview
- Sass - Home
Sass Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Sass - @-Rules and Directives
Sass - @-Rules and Directives
The following table psts all the rules and directives which you can use in SASS.
S. No. | Directives & Description |
---|---|
1 | It imports the SASS or SCSS files, it directly takes the filename to import. |
2 | It sets the style rule to different media types. |
3 | @extend directive is used to share rules and relationships between selectors. |
4 | @at-root directive is a collection of nested rules, which is able to make style block at root of the document. |
5 | @debug directive detects the errors and displays the SassScript expression values to the standard error output stream. |
6 | @warn directive is used to give cautionary advice about the problem; it displays the SassScript expression values to the standard error output stream. |
7 | @error directive displays the SassScript expression value as fatal error. |