Is there any way to increase the size of checkbox in HTML?
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; }