Sass Variables Sass variables are used to store information that can be reused throughout the stylesheet when you need. You can store…
scss
-
-
Sass vs SCSS Sass provides two distinct syntax: Sass SCSS Both are similar and do same thing, but written in different style.…
-
SASS – Control Directives & Expressions Sass control directives and expressions facilitate you to use styling based on some conditions. It also…
-
Sass @debug Directive Sass @debug directive is used to detect the errors and display the SassScript expressions values to the standard error…
-
Sass mixin arguments The mixin arguments are SassScript values that are passed when mixin is included and are available as variable. The…
-
Sass: Defining a Mixin The @mixin directive defines the mixins. It is used to include optionally the variables and arguments after the…
-
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…