Reputation: 639
I have fixed checkbox width and height with CSS, its work fine in IE browser but not in Mozila Firefox
Please visit this link
Upvotes: 2
Views: 1345
Reputation: 2910
Try this css:
input[type="checkbox"] {
width:9px;
height:9px;
-moz-appearance: none;
}
Upvotes: 5