I am flattening my textboxes and textareas on a form using the following CSS:
textarea, input[type=text], select {
border: 1px solid #B5B8C8;
}
I now want to include checkboxes .. i thought this would do the trick
textarea, input, select {
border: 1px solid #B5B8C8;
}
in firefox it doesn't seem to make any difference. In IE 9/10 I get a weird border around the checkbox (instead of changing the checkbox itself.
Any suggestions on how to make checkboxes mimic textboxes and textareas to get rid of the 3d affect.