I am using on my Android app a webview which loades an external page. It has a few anchors (<a> tags). When I press on it, yellow border appears.

How can I prevent it and remove this border ?

I've tried following tricks:

// jQuery
$("a").focus(function(){
    $(this).attr("hideFocus", "hideFocus");
});

// CSS
a, :focus {
    outline: none;
}

but with no success.

Thanks !

link|improve this question

Shouldn't a, :focus be a:focus? – Curt Sep 13 '11 at 8:19
Doesn't :focus match all elements that can be focused, even button etc ? – hsz Sep 13 '11 at 8:21
feedback

1 Answer

up vote 8 down vote accepted

Set the CSS property -webkit-tap-highlight-color as follows:

* { -webkit-tap-highlight-color: rgba(0,0,0,0); }

Note: setting the color in other ways usually fails because of the way webkit renders the highlight. Depends on version/variant according to my experience.

link|improve this answer
Kudos to you ! It works like a charm ! :) – hsz Sep 13 '11 at 8:23
Works very nice. Thanks. – Peerke Sep 22 '11 at 12:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.