Heim > Fragen und Antworten > Hauptteil
在安卓的微信游览器里,带a标签元素点击的时候会出现蓝色的边框,这个问题,请问需要怎么解决
在ios里面是会出现一个灰色的背景色使用-webkit-tap-highlight-color: rgba(0,0,0,0);可以很好的解决,但是在安卓上就不管用了!
怪我咯2017-04-17 13:38:31
a{
text-decoration:none;
}
a:hover{
text-decoration:none;
outline:none;
}
a:focus{
text-decoration:none;
outline:none;
}
:focus{
outline:0;
}
怪我咯2017-04-17 13:38:31
添加
body{ -webkit-tap-highlight-color:rgba(0,0,0,0); }
可以解决,安卓也可以,我测试了没问题