移动端链接、点击事件、输入框去除背景高亮

移动端用户点击一个链接,或者js的点击事件会出现一个边框或者半透明灰色遮罩如何去掉?
a,button,input,textarea{
-webkit-tap-highlight-color: rgba(0,0,0,0;)//chrome内核去除背景高亮

-moz-tap-highlight-color: rgba(0,0,0,0;)//Firefox内核去除背景高亮

-o-tap-highlight-color: rgba(0,0,0,0;)//欧朋内核去除背景高亮

-ms-tap-highlight-color: rgba(0,0,0,0;)//IE内核去除背景高亮

tap-highlight-color: rgba(0,0,0,0;)//去除背景高亮
}

原文地址:https://www.cnblogs.com/sunsie/p/4973556.html