谷歌浏览器和safari点击div出现蓝色边框的解决方案

项目情况:用ant design vue框架

问题重现:点击div出现蓝色边框
在这里插入图片描述

×尝试过但是无效的方法:

//第一个:
div:focus{
    
    outline:none}
//第二个
* {
    
    
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

最终解决办法如下:

html {
    
    
  --antd-wave-shadow-color: transparent !important;
}

猜你喜欢

转载自blog.csdn.net/qq_41612593/article/details/126039181