问题:
我有两个 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>