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

雨燕双飞 提交于 2019-12-10 10:59:12

问题


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?


回答1:


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

try using both.



来源:https://stackoverflow.com/questions/19813648/switch-off-tap-highlight-color-on-android-4-4-webview-component

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!