How can I hide a checkbox in html?

前端 未结 6 995
孤街浪徒
孤街浪徒 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:21

    if you want your check box to keep its height and width but only be invisible:

    .hiddenCheckBox{
        visibility: hidden;
    }
    

    if you want your check box to be invisible without any with and height:

    .hiddenCheckBox{
        display: none;
    }
    

提交回复
热议问题