小蚂蚁 发表于 2021-12-18 10:35:36

SASS第二篇 注释

/*
    1.SASS中的注释
    SASS中的注释和LESS一样
    单行注释不会被编译(不会出现在编译后的文件中)
    多行注释会被编译(会出现在编译后的文件中)
    */
    <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
      // 单行注释
    /*
    多行注释
    */
   /*以下是编译成的css文件的结果*/
   @charset "UTF-8";
/*
多行注释
*/

</style>
</head>
<body>

</body>
</html>


https://blog.51cto.com/u_14760424/4603967
页: [1]
查看完整版本: SASS第二篇 注释