Is there any way to change that blue border line of the dropdown box to something else?
Asked
Active
Viewed 2.2k times
2 Answers
3
@Joshua,
Did you try this
.input:focus {
outline: none !important;
border:1px solid red;
box-shadow: 0 0 10px #719ECE;
}

NPN
- 227
- 2
- 11
-
2That only applies to the select itself, not the dropdown. – Andrew Magill Mar 30 '19 at 00:57
2
According to this answer it cannot be changed with CSS, as it is rendered by the operating system:
(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