移动端点击出现蓝色框的解决方案

/这一句是用来解决在安卓上的点击出现篮框问题/

body{ -webkit-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; 
}

猜你喜欢

转载自blog.csdn.net/weixin_43170484/article/details/82745354