Non
Non

Reputation: 8589

Remove blue outline

I am getting this everytime I press a button, input, etc

enter image description here

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

Answers (2)

DevNebulae
DevNebulae

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

SLaks
SLaks

Reputation: 887469

You're looking for *:focus, not :active.

Upvotes: 2

Related Questions