The standard checkboxes rendered in most browsers are quite small and don’t increase in size even when a larger font is used. What is the best, browser-independent way to displ
I tried changing the padding and margin and well as the width and height, and then finally found that if you just increase the scale it'll work:
padding
margin
width
height
input[type=checkbox] { transform: scale(1.5); }