在android中,如何去掉webview读取网页后点击网页上的按钮出现的方框

参考:http://blog.sina.com.cn/s/blog_64056edc0100xt3l.html

1 <style type="text/css">
2       .borderImage { 
3       -webkit-tap-highlight-color:rgba(0,0,0,0);
4        } 
5 </style>

给每一个要展示的标签加上该风格样式。

原文地址:https://www.cnblogs.com/cmgrass/p/3738653.html