我似乎無法找到任何文件的可能性(或者甚至可能)做以下事情。使用SASS的多個嵌套CSS命名空間?
下面是基本的CSS /上海社會科學院命名空間聲明:
.example {
border: {
style: dashed;
width: 30px;
color: blue;
}
}
是否有可能也有這種格式,但鏈top, right, bottom, left
聲明?
我怎麼會想象這個被寫入:
.example {
border: {
top, right, bottom, left: {
style: dashed;
width: 30px;
color: blue;
}
}
}
.example {
border: {
[top, right, bottom, left]: {
style: dashed;
width: 30px;
color: blue;
}
}
}
謝謝,它並沒有完全回答我的問題。 –