1

问题:

我有两个 ASP.netButtons在 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>
4

1 回答 1

0

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

铬/IE/火狐Ctrl+R

于 2015-08-27T18:57:14.490 回答