如何更改select下拉框的边框颜色?

11

enter image description here

有没有办法将下拉框的蓝色边框线改为其他颜色?
2个回答

3
@Joshua,

Did you try this

.input:focus {
    outline: none !important;
    border:1px solid red;
    box-shadow: 0 0 10px #719ECE;
}

Find it here


2
这仅适用于选择本身,而不适用于下拉菜单。 - Andrew Magill

2
根据这个答案,它无法通过CSS更改,因为它是由操作系统呈现的: enter image description here (图片来源于SO上的链接回答)
您只能更改选择框本身的边框和轮廓。

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接