小程序开发中,元素点击变蓝。(ios无此问题,安卓有)
安卓手机中使用属性 'cursor: pointer;' 后,该元素点击变蓝。
解决办法:
- 该元素css加上:
-webkit-tap-highlight-color: transparent;
- 根源上杜绝:
/*这一句是用来解决在安卓上的点击出现篮框问题*/
body{ -[webkit](https://so.csdn.net/so/search?q=webkit&spm=1001.2101.3001.7020)-tap-highlight-color:rgba(0,0,0,0); }
/*下面是解决ios上去除微信点击蓝色边框 */
a:focus,
input:focus,
p:focus,
div:focus{
-webkit-tap-highlight-color:rgba(0,0,0,0);
-webkit-user-modify:read-write-plaintext-only;
}