我有這些變量
$number: 10;
$color: red;
$theme: light;
我試著在一行中做一個if語句,包含And,而不是我應該在if語句中使用Not
如果數量大于5
如果顏色同時是紅色的
如果主題值不是暗的
你不能用
.class {
@if (($number > 5) and ($color == "red") and not ($theme == "dark")) {
color: red;
}
}
這個代碼不工作,我試過沒有( )和我試過& amp& amp但它也不起作用,在我搜索后,我發現我應該使用和,而不是像在我的代碼中那樣,但我沒有正確的輸出
.class {
color: red;
}
我該如何解決這個問題?