To change the checkbox size using CSS, we set the zoom
property.
For instance, we write
<input type="checkbox" />
to add a checkbox.
Then we write
input[type="checkbox"] {
zoom: 1.5;
}
to set the zoom to 1.5 to increase the checkbox size.