我正在寻找某种 if 语句来控制background-color
不同div
元素的。
我已经尝试了以下,但它没有编译
@debug: true;
header {
background-color: (yellow) when (@debug = true);
#title {
background-color: (orange) when (@debug = true);
}
}
article {
background-color: (red) when (@debug = true);
}