Can I save an inline comment like this in a .scss file
.scss
thead { display: table-header-group; // h5bp.com/t }
I do not need this comment in my CSS release.
SASS has two different types of comments.
//
Multi-line comments */ are valid CSS and will persist * between translations from .scss to your .css file.
*/
!
Sounds like inline comments // is what you are looking for.
Yes , you can do it in SCSS .
Use inline comment: // .
Single-line comments are removed in the CSS output.