IE的css3外观属性

时间:2011-05-22 15:34:29

标签: css3 appearance

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

提前致谢!

2 个答案:

答案 0 :(得分:33)

.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工作正常。

答案 1 :(得分:0)

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