select去除默认样式

select {
  /*Chrome同Firefox与IE里面的右侧三角显示的样式不同*/
  border: solid 1px #ddd;
  /*将默认的select选择框样式清除*/
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;
  padding-right: 14px;
  /*如果要加入自定义图片, 就增加这个属性 background: url或者在html中直接加入图标也行*/
}
/*清除iIE的默认选择框样式*/
select::-ms-expand { display: none; }
原文地址:https://www.cnblogs.com/liubingyjui/p/13217340.html