我想从 HTML<select>元素中删除下拉箭头。例如:
<select>
<select style="width:30px;-webkit-appearance: none;"> <option>2000</option> <option>2001</option> <option>2002</option> ... </select>
如何在 Opera、Firefox 和 Internet Explorer 中进行操作?
无需破解或溢出。IE 上的下拉箭头有一个伪元素:
select::-ms-expand { display: none; }