完整学习视频及资料在这里哦~
链接:https://pan.baidu.com/s/1XHxElnc2N-qwg2f2J30Qyw
提取码:4k8t
关键字(important)
!important
关键字:在调用的混合集后面追加 !important 关键字,可以使混合集里面的所有属性
都继承 !important。这样可以提升样式的权重以至于不被层叠。
.bg(){
width: 200px;
height: 200px;
}
div{
.bg();
}
div{
.bg()!important;
}
// 输出
div {
width: 200px;
height: 200px;
}
div {
width: 200px !important;
height: 200px !important;
}