Reputation:
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
Reputation: 11
a is missing
should be -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
Upvotes: 1
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