select元素箭头可以隐藏在chrome上,但不能隐藏在firefox中

时间:2014-08-05 15:19:43

标签: css firefox select

注意:此问题不重复,因为旧问题中的答案不适用于FireFox 30.00及更高版本!
我使用下面的CSS来替换选择项目的箭头和它的样式。它适用于Chrome,但在FireFox 30及更高版本上它看起来像这样:
enter image description here
这是我的CSS:

select { 
-webkit-appearance: none; 
-moz-appearance: none !important; 
appearance: none !important; 
padding: 2px 30px 2px 2px; 
border: none; 
background: transparent url(../images/select.gif) no-repeat left center; 
}

Jsfiddle
我可以删除箭头吗?

0 个答案:

没有答案