Sass: Defining a Mixin The @mixin directive defines the mixins. It is used to include optionally the variables and arguments after the…
nesting
-
-
Sass Mixins Sass Mixins facilitates you to make groups of CSS declarations that you want to reuse repeatedly on your site. You…
-
Sass @each directive with multiple assignments We can use Sass @each directive with multiple values like $var1, $var2, $var3, … in .…
-
Sass Nesting Normally HTML is written in a clear nested and visual hierarchy while CSS is not. Sass facilitates you to nest…
-
Sass @each Directive The Sass @each directive contains the value of each item in the list. It is also used with multiple…
-
SASS Operations In Sass, you can use different operators to do operations like concatenating strings, concatenating colors etc. SASS Concatenating Strings The…
-
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 Operators Sass facilitates you to do basic mathematical operations in the style sheet. It is very simple to apply the appropriate…
-
Sass @error Directive Sass @error directive is used when you want to display errors. It displays the SassScript expression values as fatal…
-
Sass Output Style The Sass output style is used to specify the CSS styling for the structure of document. We know that…