我正在使用Bulma CSS framework,他们在某些颜色样式上使用!important 。
基本上有这个:
.has-text-grey-light {
color: #b5b5b5 !important;
}
我想在我的SASS文件中像这样在杂色中覆盖该颜色:
.content ul{
list-style-type: none;
margin:0;
padding:0;
li{
a{
&.has-text-grey-light:hover{
color: lighten($grey-light, 15%) !important;
}
}
}
}
,但是!important 规则使其无法编译。知道我们可以在SCSS函数中使用!important 吗?
答案 0 :(得分:0)
愚蠢的我!这是因为我输入了错误的颜色格式,而不是因为!important 。但是匆忙,我没有完全阅读它,只是以为是!重要。现在正在工作。