I\'m trying to remove default focus froom chrome and it works with outline:none; in the same time I want to add an box-shadow but it not working for select .
Most effective solution on Links only:
a:focus, a:active{
outline:none;
}
Or you can disable global:
*{
outline:none;
}
This should also do the trick:
a:focus, a:active {
outline-color: transparent !important;
}
Try this:
* {
outline-color: lime;
}
for me this worked
:focus {
outline: -webkit-focus-ring-color auto 0;
}