Add strikethrough to checked checkbox

后端 未结 6 1045
时光说笑
时光说笑 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:19

    The :checked CSS pseudo-class selector represents any radio (), checkbox () or option ( in a

And your CSS to:

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

DEMO.

提交回复
热议问题