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正常に動作します。
外観プロパティはサポートされなくなりました。必要に応じて、Firefoxの場合はmoz-appearanceを、chromeの場合は-webkit-appearanceを使用できます。