我对 IE 中的 css3 外观属性有疑问。我需要它来隐藏选择菜单的箭头,但它不起作用。我尝试过 PIE.htc、ie-css3.htc 和其他 IE CSS3 支持者,但它们都不能用于外观。请帮帮我!
提前致谢!
我对 IE 中的 css3 外观属性有疑问。我需要它来隐藏选择菜单的箭头,但它不起作用。我尝试过 PIE.htc、ie-css3.htc 和其他 IE CSS3 支持者,但它们都不能用于外观。请帮帮我!
提前致谢!
.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 工作正常。
不再支持外观属性。如果需要,您可以使用 moz-appearance for firefox 或 -webkit-appearance for chrome