How can I hide a checkbox in html?

前端 未结 6 996
孤街浪徒
孤街浪徒 2020-12-29 04:49

I want to hide a checkbox.
But also want that, when I click on label associated with corresponding checkbox, the checkbox should

6条回答
  •  天涯浪人
    2020-12-29 05:32

    input may have a hidden attribute:

    input:checked + span::before {
      content: 'un';
    }

提交回复
热议问题