我知道在CSS中我们/* */
用于评论文本.但我在一些CSS中看到了使用/*! some url or text */
./* text */
和之间有什么不同/*! text */
?
lin*_*lin 14
感叹号是为了保持评论的重要性.压缩时不会删除此注释.这很重要,例如在压缩后将许可证保存在CSS文件中.Uglify或YUICompressor将在压缩后保留该注释.
/*! important comment will not be deleted while compressing */
Run Code Online (Sandbox Code Playgroud)