How do I change the border color in a dropdown selection list?

enter image description here

Is there a way to change this blue dropdown border line to something else?

+3


source to share


2 answers


@Joshua,

Did you try this

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

      



Find here

0


source


As per this answer, it cannot be changed with CSS as it is rendered by the operating system:

enter image description here



(image source - related answer on SO)

You can change the border and outline of the selection box.

0


source







All Articles