Reputation: 7994
I have been trying to figure this out for hours... Chrome puts a blue outline on focused input elements and after trying the usual CSS styles to force it back to having no outline, Chrome doesn't want to listen.
I've tried:
input {
outline:none;
-webkit-appearance:none;
}
and
input:focus {
outline:none;
-webkit-appearance:none;
}
with no luck at all.. looks like chrome is really trying to make this difficult.
Upvotes: 1
Views: 1602
Reputation: 2037
After no luck with "outline: 0" - the following fixed disabling highlighted input:
box-shadow: none;
Upvotes: 1