Increasing the size of checkbox in HTML

后端 未结 9 1737
一向
一向 2020-12-15 16:55

Is there any way to increase the size of checkbox in HTML?

9条回答
  •  無奈伤痛
    2020-12-15 17:55

    I searched a lot and finally i created a custom checkbox.Code is

      
           
    

    Style is

         .CheckBoxLabelClass{
        background: url("uncheck222.png") no-repeat;
        padding-left: 5px;
        padding-top: 3px;
        padding-right: 10px;
        margin: 5px;
        height: 60px;   
        width: 60px;
        display: block;
    }
    .CheckBoxLabelClass:hover{
        text-decoration: underline;
    }
    .LabelSelected{
         background: url("check1111.png") no-repeat; 
        padding-left: 5px;
        padding-top: 3px;
        padding-right: 10px;
        margin: 5px;
        height: 60px;   
        width: 60px;
        display: block;
    
    }
    

    checkbox code is:

        
                
    

提交回复
热议问题