标签:ble 调用 ack enum class less imp import line
在调用 mixin 时,如果在后面追加 !important 关键字,就可以将 mixin 里面的所有属性都标记为 !important。如,以下Less代码:
.mixin() {
color: #900;
background: #F7BE81;
}
h2 {
.mixin() !important;
}
编译后的CSS代码为:
h2 {
color: #900 !important;
background: #F7BE81 !important;
}
标签:ble 调用 ack enum class less imp import line
原文地址:http://www.cnblogs.com/waibo/p/7908463.html