Disabled buttons look enabled in Firefox and Chrome
Disabled buttons look enabled in Firefox and Chrome. I opened the same page in ie, firefox, chrome and this is the output:
"DashBoard" and "Calendar" are disabled
"Agent Info" is enabled.Here I'm using normal asp buttons with css. What do I 开发者_StackOverflowdo?
You could add css for disabled buttons. Something like
input[disabled="disabled"] { /* disabled styles */ }
You can modify the way they look with CSS:
element[disabled]
{
...
}
精彩评论