Reputation: 8589
I am getting this everytime I press a button, input, etc
I talk about that light blue border, what should I do to remove it ?
I just try
*:active {
outline: 0;
}
it doesn't work
Upvotes: 0
Views: 105
Reputation: 4916
I have had the same problem myself and I have a solution from a project I am currently working on. This could be a solution.
your-element:focus,
your-element:active {
outline: none;
}
Upvotes: 1