我正在寻找扩大我的单选按钮周围的可点击区域。
这就是我所拥有的:
这就是我要的:
我尝试了以下(此处为 jsFiddlewidth
) ,但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;
}