Here is the solution to be made when your entry is verified:
HTML:
<div class="form-group "> <label for="inputName" class="col-md-1 control-label">select</label> <div class="col-md-5"> <div class="checkbox"> <input type="checkbox" name="packersOff" value="1"/> <label class="strikethrough">sssssssss</label> </div> </div> </div>
CSS
input[type=checkbox]:checked + label.strikethrough{ text-decoration: line-through; }
JSFIDDLE
With this solution, when the checkbox is checked, it will do something on the label. so you can make it bold or change its color if you want.
source share