I am trying to add strikethrough when i select a checkbox in my form (Bootstrap v3). I coded this bootply:
Here is a solution to put a strike through when your input is checked:
input[type=checkbox]:checked + label.strikethrough{
text-decoration: line-through;
}
JSFIDDLE
With this solution when ever the checkbox is checked it will do something to the label. so you could make it bold or change its colour if you wanted.