I am trying to figure out if there is a way to change the text color of a disabled button in IE. With below code ,the text color is appropriate in Firefox/Chrome but no effect in IE :
<html>
<head>
<style>
button[disabled] {
color:#933;
}
</style>
</head>
<body>
<button type="submit" disabled="disabled">Sample Button</button>
</body>
</html>
Any suggestions what might be wrong here or any alternate ways to do it will be helpful.