Sass Comments
Comments in Sass, similarly to JavaScript, come in two different types: Single-line comments and Multi-line comments.
The Single-line comments start with //
and go until the end of the line. Single-line comments are NOT compiled to CSS, which way they are also called silent comments
Multi-line comments start with /*
and end at the next */
. If a multi-line comment is written somewhere that a statement is allowed, it’s compiled to a CSS comment. They’re also called loud comment, by contrast with silent comments. A multi-line comment that’s compiled to CSS may contain interpolation, which will be evaluated before the comment is compiled.
// This comment will no be include in the CSS
/* This comment will be
included in the CSS */