user920041
user920041

Reputation:

How to remove webkit tap highlight border only?

If you don't like webkit to highlighting links when tapping them, you can remove that effect with:

-webkit-tap-highlight-color: rgb(0, 0, 0, 0);

Actually I want this effect, but not the extra border added around the tapped element.

Is there a way to remove highlight border only?

Upvotes: 2

Views: 2966

Answers (2)

Ferdinand Kramer
Ferdinand Kramer

Reputation: 11

a is missing

should be -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

Upvotes: 1

Antoine Minoux
Antoine Minoux

Reputation: 39

If you are talking about that orange borders around inputs on focus, you might want to try to add outline:none; to your CSS properties.

Like so :

input { outline:none; }

Upvotes: 3

Related Questions