摘要: 变量 变量以$开头 $blue : #1875e7; div { color : $blue; } } 如果变量需要镶嵌在字符串之中,就必须需要写在**#{}**之中。 $side : left; .rounded { border-#{$side}-radius: 5px; } 计算功能 body 阅读全文
posted @ 2021-09-27 22:47 牛码先生 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 注释 //单行注释 /* 多行注释 多行注释 多行注释 */ 变量 @width: 10px; @height: @width + 10px; #header { width: @width; height: @height; } 编译为: #header { width: 10px; height 阅读全文
posted @ 2021-09-27 20:12 牛码先生 阅读(167) 评论(0) 推荐(0) 编辑