Sass Inheritance/ Extend In Sass, @extend is used to share a set of CSS properties from one selector to another. It is…
Sass Tutorial
-
-
SASS: Installation and Execution You have to install Ruby for executing the SASS files. System Requirements for SASS You have to fulfill…
-
Sass Commands in Ruby To install Sass gem: gem install sass To run Sass from command line: sass input.scss output.css To tell…
-
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: Defining a Mixin The @mixin directive defines the mixins. It is used to include optionally the variables and arguments after the…
-
Sass mixin arguments The mixin arguments are SassScript values that are passed when mixin is included and are available as variable. The…
-
Sass @each directive with multiple assignments We can use Sass @each directive with multiple values like $var1, $var2, $var3, … in .…
-
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 The Sass @each directive contains the value of each item in the list. It is also used with multiple…