sass编译css时出现错误
我在控制台可以看到输出的字符串,可是我的css文件就出错了,求解决办法。
@function double($width){//自定义函数
@if $width > 3px{
@error "$width not > 3px";
}
@return $width * 2;
}
body{
$color:rgb(255,255,255);
color:$color;
//background-color:rgba(255,0,200,05);
background-color:rgba($color,05);
p{
color: darken($color,2);//颜色加深函数,加深了2倍
background-color: lighten($color,0.9);//变浅
z-index: str-length('aaaaaa');//6
z-index: str-index('abcdef','d');//4,这个索引以1开头
width: double(5px);
}
}
@Debug 'This is a debug test';
@warn 'warn';
@error 'error';//这三个在控制台进行输出
@function getzIndex($layer:default){
$zindexMap:(default:1,modal:1000,dropdown:500,grid:300);
$zindex:0;
@if map-has-key($zindexMap,$layer){
$zindex:map-get($zindexMap,$layer);
}@else{
$zindex:1;
};
@return map-get($zindexMap,$layer);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论