HefferWolf
HefferWolf

Reputation: 3924

Switch off Tap-Highlight-Color on Android 4.4 WebView component

We use the css property -webkit-tap-highlight-color: rgba(0, 0, 0, 0); to switch off the border around a touch selection in the WebView. But this seems to no longer work with the new Chromium WebView component in Android 4.4. Anyone an idea how to switch off the tap highlight color in the new WebView component?

Upvotes: 2

Views: 3772

Answers (1)

digitrick
digitrick

Reputation: 106

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

try using both.

Upvotes: 9

Related Questions