I'm working on a site that needs to be Section 508 compliant so I figured increasing the size of the checkboxes would be useful to any of the visually impaired that still had some vision. Check out this screen shot from Chrome 15 (versus Chrome 16):
This is the same css which happens to be:
input[type="checkbox"] {
width: 30px;
height: 30px;
}
As you can see the width and height are interpreted very differently. Anyone know how to get this to work with both browsers? (IE9 does the same thing on the right also).