摘要: 1.变量声明 用$符号标识变量,任何css的属性值都可以作为变量值 。 $nav-color: #F90; //全局变量声明 nav { $width: 100px; //块级作用域变量声明 width: $width; //变量使用 color: $nav-color; } 2.可以嵌套使用 #c 阅读全文
posted @ 2022-10-12 18:03 神奇名字 阅读(36) 评论(0) 推荐(0)