清除系統(tǒng)默認(rèn)下拉菜單selected小三角,可以試下一下方法。
select {
/*Chrome和Firefox里面的邊框是不一樣的,所以復(fù)寫了一下*/
border: solid 1px #000;
/*很關(guān)鍵:將默認(rèn)的select選擇框樣式清除*/
appearance:none;
-moz-appearance:none;
-webkit-appearance:none;
/*在選擇框的最右側(cè)中間顯示小箭頭圖片*/
background: url("http://ourjs.github.io/static/2015/arrow.png") no-repeat scroll 95% 55% #fff;
/*為下拉小箭頭留出一點(diǎn)位置,避免被文字覆蓋*/
padding-right: 14px;
padding-left:10px;
}
/*清除ie的默認(rèn)選擇框樣式清除,隱藏下拉箭頭*/
select::-ms-expand { display: none; }