Google News
logo
Sass - Interview Questions
What is the use of the @mixin directive?
The @mixin directive is used to define the mixins that include the variables and argument optionally after the name of the mixin.
 
Sass @mixin Syntax :
@mixin name {
  property: value;
  property: value;
  ...
}

 

Advertisement