Sass 初级学习三

1:运算

2:Sass带的一些函数:abs (求绝对值),round(四舍五入),ceil(向上取整),floor (向下取整) ,percentage(百分比)等

3:字符串函数

str-length (获取长度),to-upper-case (大写),to-lower-case (转小写),str-index (获取字符串在另一个字符串的下标位置)

str-insert( 拼接)

4:颜色表示方式:a:string字符串(red,white); b:rgb(RGB(255,0,0))   , c:十六进制(#ff0000)d:色相饱和度明度

5:列表函数:

6:map函数:map-has-key , map-keys,map-values , map-merge, map-remove等

原文地址:https://www.cnblogs.com/hanliping/p/13951076.html