Answers for "resize checkbox"

CSS
4

css resize checkbox

input[type=checkbox] {
    transform: scale(1.5);
}
Posted by: Guest on July-19-2020
2

css percent scale checkbox

// to scale checkboxes with the rest of the page use this:
//Note, use width percent, height auto and the scale command inside another div as a ref
<div style="width:100%; height:auto;">
	<input type="checkbox" style="width:20%; height:auto; transform: scale(2.5);">
</div>
Posted by: Guest on August-06-2020
0

resize checkbox

/* https://developer.mozilla.org/en-US/docs/Web/CSS/zoom */

input[type=checkbox] {
	zoom: 2;
}
Posted by: Guest on August-20-2021

Browse Popular Code Answers by Language