Google News
logo
Sass - Interview Questions
Does SASS support inline comments?
Sass supports standard CSS comments /* comment */, and in addition it supports inline comments // comment :
 
Sass Example : 
/* define primary colors */
$primary_1: #a2b9bc;
$primary_2: #b2ad7f;

/* use the variables */
.main-header {
  background-color: $primary_1; // here you can put an inline comment
}

 

Advertisement