开发者

Disabled buttons look enabled in Firefox and Chrome

开发者 https://www.devze.com 2023-01-05 20:04 出处:网络
Disabled buttons look enabled in Firefox and Chrome. I opened the same page in ie, firefox, chrome and this is the output:

Disabled buttons look enabled in Firefox and Chrome. I opened the same page in ie, firefox, chrome and this is the output:

Disabled buttons look enabled in Firefox and Chrome

"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]
{
    ...
}
0

精彩评论

暂无评论...
验证码 换一张
取 消