Disabled buttons look enabled in Firefox and Chrom

2019-04-12 02:59发布

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

alt text http://i48.tinypic.com/2f0a81t.jpg

"DashBoard" and "Calendar" are disabled
"Agent Info" is enabled.

Here I'm using normal asp buttons with css. What do I do?

2条回答
劫难
2楼-- · 2019-04-12 03:24

You could add css for disabled buttons. Something like

input[disabled="disabled"] { /* disabled styles */ }
查看更多
时光不老,我们不散
3楼-- · 2019-04-12 03:25

You can modify the way they look with CSS:

element[disabled]
{
    ...
}
查看更多
登录 后发表回答