在android中,如何去掉webview读取网页后点击网页上的按钮出现的方框
时间:2014-05-22 02:30:54
收藏:0
阅读:304
参考: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>
给每一个要展示的标签加上该风格样式。
评论(0)