The AV
The AV

Reputation: 639

Check box style issue in firefox

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

Answers (1)

Fredy
Fredy

Reputation: 2910

Try this css:

input[type="checkbox"] {
    width:9px;
    height:9px;
    -moz-appearance: none;
}

Upvotes: 5

Related Questions