Does it work in IE6?
No, IE6 does not support attribute selectors in general, cf. CSS and Internet Explorer compatibility .
You can find a workaround: IE6 does not support the CSS attribute selector that is worth reading.
EDIT
If you ignore IE6, you can do (CSS2.1):
input[type=submit][disabled=disabled], button[disabled=disabled] { ... }
CSS3 (IE9 +):
input[type=submit]:disabled, button:disabled { ... }
You can replace [disabled=disabled] (attribute value) with [disabled] (attribute presence).
jensgram Sep 21 '10 at 11:11 2010-09-21 11:11
source share