html标签a,video,button 点击出现 蓝色边框线, 阴影

  • :focus{ outline:none}

  • a标签有点特殊,需要设置:

a,a:hover,a:active,a:visited,a:link,a:focus{
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent;
  outline:none;
  background: none;
  text-decoration: none;
}
原文地址:https://www.cnblogs.com/ZerlinM/p/13637805.html