2
刪除屬性下面.scss代碼:刪除/從一個混合
@mixin div-base {
width: 100px;
color: red;
}
#data {
@include div-base;
}
會產生:
#data {
width: 100px;
color: red; }
我想這樣做:
#data {
@include div-base;
remove or delete: width right here
}
到產生:
#data {
color: red;
}
是否有可能根據這些方面做些事情?
有一個最基本的基類,並將其擴展爲'div-base' –