Reputation: 51064
How can I achieve a smaller checkbox input, for use in densely populated lists etc. using standard HTML + CSS?
Upvotes: 8
Views: 14207
Reputation: 48238
<style type="text/css">
input[type='checkbox'] {
width:10px;
height:10px;
}
</style>
Upvotes: 5
Reputation: 7961
Resizing the checkbox input isn't reliable cross-browser. Check out this site for some investigation:
Upvotes: 7