Line breaks after hard comments in Sass
问题 I'm using the latest Sass with Compass addon. I want my production code to include my "hard" comments, but after that I would like to have a line break. /*! Generic elements and layout */ /* *********************************************** */ html box-sizing: border-box ... Should be outputted like this: /* Generic elements and layout */ html{box-sizing: border-box}... Is this a possibility? I would like to include licences from 3rd party things (flexbox etc.) like this in my code. 回答1: No.