sass 使用记录

定义函数

// 背景图片地址和大小
@mixin bis($url) {
background-image: url($url);
background-repeat: no-repeat;
background-size: 100% 100%;
}
使用方式
@include bis(‘./a.jpg’);

定义变量

$fc:#fff;
使用方式
z-index:$fc;

定义复合变量

@mixin allcover{
position:absolute;
top:0;
right:0;
}

使用方式
@include allcover;

posted @ 2017-07-13 17:51  _白马非马  阅读(201)  评论(0编辑  收藏  举报