Input Checkbox!

Hi guys =)
I have an inbox, inside the inbox I have checkboxes, you check those if you want to delete a message, but in my CSS I already check that all input things has to be 160px, and it also makes all the input things to center. So I wondered if there is a way that I could resize the input JUST for this thing, I do not want to change my CSS.
My check box code;

<td width=14 valign="midle" align="left" ><input name="pms[]" type="checkbox" value="<?php echo $pm_id; ?>"></td>

add a class to checkboxes, if ie wasn’t so gay about selectors you could’ve done


input[type='checkbox'] { }

in your css

Well, I use Firefox and it didnt really change a thing, heres what I added to my CSS;

input [type='checkbox'] {
width:14px;
border: 1px solid #CCC;
}

no space…

[COLOR=Red]input[type='checkbox'][/COLOR] {
width:14px;
border: 1px solid #CCC;
}

but like simplistik said, it still won’t fix it in IE…