标签: html css html-select
我有这个选择,每当我在IE / Edge中运行它时,打开的选项列表周围都会有一个粗黑框。
在Edge中打开选择:
在Chrome中不会发生这种情况:
有没有一种方法可以覆盖IE / Edge中的粗边框?我希望它的边框与Chrome中的边框相似。
<select> <option>Apple</option> <option>Ball</option> <option>Cat</option> </select>
答案 0 :(得分:0)
在任何浏览器中都无法更改通用下拉菜单的样式。
但是使用Javascript,您可以替换默认的下拉表单元素并完全更改它们。
或者您可以使用现成的下拉插件,例如these。
More info
Reinventing a Drop Down with CSS and jQuery