是否可以更改asp.net中的下拉箭头,该箭头支持所有浏览器而不使用select标签?

时间:2016-01-21 09:11:01

标签: css asp.net

我已经将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;
}

0 个答案:

没有答案