Sass @while Directive The Sass @while directive is very similar to @for directive. It also takes SassScript expressions and iteratively outputs nested…
Sass Tutorial
-
-
Sass (Systematically Awesome Style Sheets) Sass stands for Systematically Awesome Style Sheets. It is a CSS pre-processor. It is an extension of…
-
Sass @each Directive The Sass @each directive contains the value of each item in the list. It is also used with multiple…
-
Sass Nesting Normally HTML is written in a clear nested and visual hierarchy while CSS is not. Sass facilitates you to nest…
-
Sass @else-if Directive The Sass @else-if directive is used when @if directive is failed. If it is failed @else directive is used.…
-
SASS Operations In Sass, you can use different operators to do operations like concatenating strings, concatenating colors etc. SASS Concatenating Strings The…
-
Sass @error Directive Sass @error directive is used when you want to display errors. It displays the SassScript expression values as fatal…
-
Sass Operators Sass facilitates you to do basic mathematical operations in the style sheet. It is very simple to apply the appropriate…
-
SASS Example We can simply create SASS and SCSS example. To do so, use the following steps: Create a HTML file having…
-
Sass Output Style The Sass output style is used to specify the CSS styling for the structure of document. We know that…