as specified by CSS 2.1:
input[type=submit] {
}
or
input[type="submit"] {
}
must matches any input element whose "type" attribute value is exactly equal to "submit". However this selector doesn't works on IE8 (and IE7 compatibility mode). Any hint? workarounds?