【发布时间】:2013-06-17 16:17:21
【问题描述】:
我希望放大单选按钮周围的可点击区域。
这就是我所拥有的:
这就是我想要的:
我尝试了以下(jsFiddle here),但width 和height 属性似乎不适用于<label>...
HTML:
<div style="white-space:nowrap;">
<span class="radio_option">
<input type="radio" id="one" name="click_item" value="1" />
<label class="radio_label" for="one">First Item</label>
</span>
<span class="radio_option">
<input type="radio" id="two" name="click_item" value="2" />
<label class="radio_label" for="two">Second Item</label>
</span>
</div>
CSS:
span.radio_option {
border: 1px solid gray;
}
span.radio_option:hover {
background: #E0E0E0;
}
label.radio_label {
width: 100px;
height: 30px;
}
label.radio_label:hover {
cursor: pointer;
}
【问题讨论】:
标签: html css radio-button