我在IE中的css3外观属性有问题。我需要它来隐藏选择菜单的箭头,但它就是不起作用。我试过PIE.htc,ie-css3.htc和其他IE CSS3的支持者,但是他们都不支持外观。请帮帮我!
提前感谢!
发布于 2013-10-15 06:09:27
.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;
}
Mozilla Note:对于Chrome,&IE10运行良好。
发布于 2017-06-13 22:32:15
不再支持外观属性。如果需要,您可以为firefox使用moz-外观,或者为chrome使用-webkit-外观
https://stackoverflow.com/questions/6088925
复制相似问题