ASP.net按钮与CssClass无法正常工作

时间:2013-04-05 13:55:10

标签: asp.net css css3

问题:

我有两个ASP.net Buttons在Chrome和Firefox浏览器中可以正常工作,但在IE 9.0中没有。

*Does not work on IE 9.0*
<asp:Button ID="btnMeal" runat="server" onclick="btnMeal_Click" Text="." CssClass="buttonmeal" />

*Works fine on IE 9.0 and other browsers*
<asp:Button ID="btnType" runat="server" onclick="btnType_Click" Text="." CssClass="button"/>

CSS代码:

/*Doesnt work*/
.buttonmeal
 {
        background: url('../images/meal.png') no-repeat;
        width:82px;
        height:32px;
        border:0px;     
    }

/*Works*/
    .button
    {
        background: url('../images/type.png') no-repeat;
        width:82px;
        height:32px;
        border:0px;     
    }

也许我认为问题是因为它以不同的方式呈现在IE中,并且在IE中只使用了按钮。

<td class="myStyle">
    <input type="button" name="select" ...>
</td>

1 个答案:

答案 0 :(得分:0)

很可能是一个缓存问题(无论如何都是为了我)。您的浏览器没有使用最新版本的CSS文件,这是一个很好的改变。尝试一下硬刷:

Chrome / IE / Firefox Ctrl + R