選擇一類我有這對每個輸入標籤的形式:在薩斯
<label>My Label</label>
我的風格它:
label {
&:before {
background-color: red;
}
}
我一個類添加到每個標籤:
<label class="blue">My Label</label>
<label class="yellow">My Label</label>
如何在Sass中爲每個課程選擇前?
label {
&:before {
background-color: red;
&.blue {
background-color: blue; //???????
}
}
}
請注意,我之所以用::before
選擇的東西是不是改變一個標籤背景顏色比較複雜,我剛剛用這個作爲一個簡單的例子。
漂亮的確定需要選擇是'標籤:before'和'label.blue :在'之前,而不是'label.blue'。 – cimmanon 2014-09-23 17:40:59