【问题标题】:Fore color of a disabled button on IE6 and aboveIE6 及以上版本禁用按钮的前景色
【发布时间】:2012-04-24 01:43:21
【问题描述】:

如何在 IE6 及更高版本的禁用模式下更改 asp 按钮的前景色

【问题讨论】:

  • 首先,如果你能帮上忙,就放弃对IE6的支持,连微软都不支持了。从 IE7 开始,您所做的一切都会变得更轻松。

标签: asp.net html css


【解决方案1】:

Reference

CSS

[disabled]#DisabledButton
{
    color: #933;
    background-color: #ffc;
}

标记

<asp:Button ID="DisabledButton" runat="server" Text="Hello Guest" 
                                                      Enabled="false" />

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-10-10
    • 1970-01-01
    • 1970-01-01
    • 2016-10-02
    相关资源
    最近更新 更多