Reputation: 2399
Is there any way to change that blue border line of the dropdown box to something else?
Upvotes: 11
Views: 25276
Reputation: 4008
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.
Upvotes: 2
Reputation: 227
@Joshua,
Did you try this
.input:focus {
outline: none !important;
border:1px solid red;
box-shadow: 0 0 10px #719ECE;
}
Upvotes: 3