小编典典

如何从下拉列表(选择元素)中删除默认箭头图标?

all

我想从 HTML<select>元素中删除下拉箭头。例如:

<select style="width:30px;-webkit-appearance: none;">
    <option>2000</option>
    <option>2001</option>
    <option>2002</option>
    ...
</select>

如何在 Opera、Firefox 和 Internet Explorer 中进行操作?

在此处输入图像描述


阅读 78

收藏
2022-04-02

共1个答案

小编典典

无需破解或溢出。IE 上的下拉箭头有一个伪元素:

select::-ms-expand {
    display: none;
}
2022-04-02