IE6及以上版本的禁用按钮的前景色

时间:2012-04-23 17:19:01

标签: asp.net html css

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

1 个答案:

答案 0 :(得分:0)

<强> Reference

CSS

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

Mark Up

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