以下是选择器:
<label for="choise1" id="l1"></label>
<label for="choise2" id="l2"></label>
<input type="radio" id="choise1" name="navinp" checked="true" />
<input type="radio" id="choise2" name="navinp" />
和CSS:
#choise1:checked ~#l1
{ background-color: #fff; }
#choise2:checked ~#l2
{ background-color: #fff; }
我认为这应该改变标签bgcolor
,但点击标签时没有任何反应。怎么了?