最佳答案
我有选择元素,我想删除箭头,然后我可以添加其他图标。 我可以在 Firefox Safari 和 Chrome 上这样做, 但是这个在 IE9上不起作用。
.styled-select select
{
border: 0 !important; /*Removes border*/
-webkit-appearance: none; /*Removes default chrome and safari style*/
-moz-appearance: none; /*Removes default style Firefox*/
background: url('select_icon.png') no-repeat;
background-position: 179px 7px;
text-indent: 0.01px;
text-overflow: "";
color: #FCAF17;
width:200px;
}
请看 IE9台的 小提琴。 我只需要移除 ie9中的箭头 请 JSFIDDLE 回答。