我正在使用多行评论
/ * *常见的风格去这里 * / 样式定义继续......
我在编译时遇到错误。它说:
Error: Invalid CSS after "*/": expected identifier, was ""
请注意:我没有使用SCSS,我不希望。不要问我为什么。如此友好地发布不包含SCSS解决方案的答案。
答案 0 :(得分:2)
尝试将评论*/
与内容缩进至少2个空格,如果您在多行上使用它。以下是codepen的示例:http://codepen.io/anon/pen/XjJAbQ
/* This should work */
///*
//This won't work!
//*/
///*
//This will not work
// */
/**
* This is a multi line comment
* And this should work.
*/
// This is a sass comment
.someClass
width: 200px
height: 200px
background: #000

<div class="someClass">
</div>
&#13;