我不知道为什么当我点击 email2@mail.com 例如我的第一个复选框被选中时...我做了一个小提琴来说明我的问题...
<table class="checkboxes">
<tr>
<td >
<label for="CheckBoxOne"><input id="CheckBoxOne" type="checkbox" value=" test@mail.com " />
<span>test@mail.com </span></label></td>
<td >
<label for="CheckBoxOne"><input id="CheckBoxOne" type="checkbox" value=" test2@mail.com " />
<span>test2@mail.com </span></label></td>
</tr>
</table>
CSS
.checkboxes label
{
display: block;
float: left;
padding-right: 10px;
white-space: nowrap;
}
.checkboxes input
{
vertical-align: middle;
}
.checkboxes label span
{
vertical-align: middle;
}