2014-03-05 75 views
1

目標單選按鈕我有一些HTML等:通過值的CSS

<input type="radio" value="red" id="color" name="attribute_color"> 
<input type="radio" value="blue" id="color" name="attribute_color"> 
<input type="radio" value="green" id="color" name="attribute_color"> 

如何可以針對不添加任何ID或類中的不同的輸入?我能以價值爲目標嗎?

+0

對不起...... :-) – pstidsen

回答

4

是的,你可以定義你的CSS規則,如下所示:

input[value="red"] { 
    /* style for red radio */ 
} 

input[value="green"] { 
    /* style for green radio */ 
} 

input[value="blue"] { 
    /* style for blue radio */ 
} 

屬性選擇適用於所有瀏覽器和IE7 +

+0

是否值得指出的是,一個班級也會工作,所以似乎沒有必要。除非'價值'當然有其他用途。 –