IE 的 css3 外观属性

发布于 2024-11-08 15:35:46 字数 123 浏览 0 评论 0原文

我在 IE 中遇到 css3 外观属性问题。我需要它来隐藏选择菜单的箭头,但它不起作用。我尝试了 PIE.htc、ie-css3.htc 和其他 IE CSS3 支持程序,但它们都不适用于外观。请帮助我!

提前致谢!

I have a problem with the css3 appearance property in IE. I need it to hide a select menu's arrow, but it's just not working. I tried PIE.htc, ie-css3.htc and other IE CSS3 supporters, but none of them work with appearance. Help me, please!

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜尕妞 2024-11-15 15:35:46
.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 运行良好。

.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;
}

Note : For Chrome, Mozilla & IE 10 Works fine.

Smile简单爱 2024-11-15 15:35:46

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

appearance property is no longer supported.
If required you can use moz-appearance for firefox or
-webkit-appearance for chrome

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文