Increasing the size of checkbox in HTML

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

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

9条回答
  •  清歌不尽
    2020-12-15 17:52

    One way I changed the checkbox size is by scaling it with CSS:

    input[type=checkbox] {
        transform: scale(2);
        -ms-transform: scale(2);
        -webkit-transform: scale(2);
        padding: 10px;
    }
    

提交回复
热议问题