如何删除IE / Edge打开选择框的默认样式

问题描述 投票:0回答:1

我有这个选择,每当我在IE / Edge中运行它时,打开的选项列表周围都有一个粗黑边框。

在Edge中打开选择:

thick border

在Chrome中,这不会发生:

enter image description here

有没有办法在IE / Edge中覆盖那个粗边框?我希望它与Chrome中的边框类似。

<select>
 <option>Apple</option>
 <option>Ball</option>
 <option>Cat</option>
</select>
html css html-select
1个回答
0
投票

无法在任何浏览器中更改通用下拉列表的样式。

但是使用Javascript,您可以替换默认的下拉表单元素并完全更改它们。

或者您可以使用像these这样的现成下拉插件。

More info

Reinventing a Drop Down with CSS and jQuery

© www.soinside.com 2019 - 2024. All rights reserved.