当我在表单(Bootstrap v3)中选择一个复选框时,我正在尝试添加删除线。我对这个bootply 进行了编码:
<div class="form-group ">
<label for="inputName" class="col-md-1 control-label">select</label>
<div class="col-md-5">
<div class="checkbox">
<label><input type="checkbox" name="packersOff" class="strikethrough" value="1">sssssssss</label>
</div>
</div>
</div>
并在css中添加了一个类
.strikethrough:checked{
text-decoration:line-through;
}
但它不起作用..