移动端去掉a标签点击时出现的背景

之前做移动端的Portal时,手机上测试,点击a标签总是出现一个背景框

在CSS中添加 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);就可以了


a:active{

     -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

}