I am trying to add strikethrough when i select a checkbox in my form (Bootstrap v3). I coded this bootply:
Problem is that you are trying to apply line-through on checkbox where as the text is inside the label. You can wrap the text inside a and alter it's CSS on :checked
line-through
:checked
sssssssss .strikethrough:checked + span{ text-decoration:line-through }
Bootply