12

我对 IE 中的 css3 外观属性有疑问。我需要它来隐藏选择菜单的箭头,但它不起作用。我尝试过 PIE.htc、ie-css3.htc 和其他 IE CSS3 支持者,但它们都不能用于外观。请帮帮我!

提前致谢!

4

2 回答 2

37
.listing select{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url("../images/select-bg.jpg") no-repeat scroll 0 0 transparent;
    text-indent: 0.01px;
    text-overflow: "";

}
.listing select::-ms-expand{
    display: none;
}

注意:对于 Chrome、Mozilla 和 IE 10 工作正常。

于 2013-10-15T06:09:26.717 回答
0

不再支持外观属性。如果需要,您可以使用 moz-appearance for firefox 或 -webkit-appearance for chrome

于 2017-06-13T22:32:15.197 回答