Can I keep an inline comment like this in my .scss file
.scss
thead { display: table-header-group; // h5bp.com/t }
I don't want this comment in my CSS output.
There are two different types of comments to consider in SASS.
//
Multiline comments */ are valid CSS, and will be preserved* between the translation from .scss to your .css file.
*/
!
It sounds like inline comments // are what you're looking for.
2.1m questions
2.1m answers
60 comments
57.0k users