终于!我每次在修正浏览器相容性的时候,都会因为常见的CSS Code没办法移除ie那个下拉选单而困扰,这下让我找到方法啦!
//常见的移除法select {appearance: none;-moz-appearance: none;-webkit-appearance: none;}//特别针对ie移除箭头select::-ms-expand {display: none;}
参考来源:
http://uplifted.net/programming/change-default-select-dropdown-style-just-css/