我已经将CSS应用于asp.net中的一个类,用于下拉控件以更改下拉箭头,它在chrome和firefox中工作得很好,但在IE中却没有。有什么解决方案吗?请问如果是的话。
<asp:DropDownList ID="ddlServiceArea" AutoPostBack="true" runat="server" style="width:100%; height:40px;color:rgb(35,53,110) !important;" OnSelectedIndexChanged="ddlServiceArea_SelectedIndexChanged" class="ddltextboxborder ddlStyle haysBlueColor dropdownArrowCol">
</asp:DropDownList>
.dropdownArrowCol {
color: darkblue;
-webkit-appearance: none;
-moz-appearance:none;
-o-appearance:none;
appearance:none;
background: url("../images/dropdownArrow.png");
background-position: right;
background-repeat: no-repeat;
}