11

enter image description here

Is there any way to change that blue border line of the dropdown box to something else?

Joshua Leung
  • 2,219
  • 7
  • 29
  • 52

2 Answers2

3
@Joshua,

Did you try this

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

Find it here

NPN
  • 227
  • 2
  • 11
2

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

enter image description here

(source of the picture is the linked answer on SO)

You can only change the border and the outline of the select box itself.

Amade
  • 3,665
  • 2
  • 26
  • 54