Add strikethrough to checked checkbox

后端 未结 6 1032
时光说笑
时光说笑 2021-02-13 23:57

I am trying to add strikethrough when i select a checkbox in my form (Bootstrap v3). I coded this bootply:

6条回答
  •  离开以前
    2021-02-14 00:13

    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

    .strikethrough:checked + span{ text-decoration:line-through }

    Bootply

提交回复
热议问题