Reputation: 3924
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
Reputation: 106
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
outline: 0;
try using both.
Upvotes: 9