【发布时间】:2014-02-14 13:29:10
【问题描述】:
任何人都知道如何将活动状态添加到带标签的单选按钮?
HTML:
<label class="blacksize" for="XS">
<input type="radio" name="comment" value="XS" size="50" required checked>XS<br>
</label>
<label class="blacksize">
<input type="radio" name="comment" value="Small" size="50" required>S<br>
</label>
<label class="blacksize">
<input type="radio" name="comment" value="Medium" size="50" required>M<br>
</label>
<label class="blacksize">
<input type="radio" name="comment" value="Large" size="50" required>L<br>
</label>
<label class="blacksize">
<input type="radio" name="comment" value="XL" size="50" required>XL<br>
</label>
<label class="blacksize">
<input type="radio" name="comment" value="XXL" size="50" required>XXL<br>
</label>
我可以使用哪种 CSS 样式来使选定收音机的标签具有“活动”/“选定”状态,就像您在菜单等中一样?
【问题讨论】:
标签: html css radio-button labels