How to make the checkbox smaller than the default size?

How can I get a smaller flag, for use in tightly populated lists, etc., using standard HTML + CSS?

+5
source share
2 answers

Resizing the checkbox is not a reliable cross browser. Check this site for investigation:

Styled Checkboxes

+6
source
<style type="text/css">
    input[type='checkbox'] {
        width:10px;
        height:10px;
    }
</style>
+1
source

All Articles