小程序使用属性'cursor: pointer;',元素点击变蓝

小程序开发中,元素点击变蓝。(ios无此问题,安卓有)
安卓手机中使用属性 'cursor: pointer;' 后,该元素点击变蓝。


image.png

解决办法:

  1. 该元素css加上:
 -webkit-tap-highlight-color: transparent;
  1. 根源上杜绝:
/*这一句是用来解决在安卓上的点击出现篮框问题*/
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; 
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。