I'm looking for some kind of if-statement to control the background-color
of different div
elements.
I have tried the below, but it doesn't compile
@debug: true;
header {
background-color: (yellow) when (@debug = true);
#title {
background-color: (orange) when (@debug = true);
}
}
article {
background-color: (red) when (@debug = true);
}