我有select元素,我想删除箭头,然后我可以添加其他图标。我可以为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;
}
SEE 小提琴上的IE9。我所需要的就是删除ie9中的箭头,请JSFIDDLE回答。
月关宝盒