Html chrome mobile中的onclick on按钮上的蓝色高亮显示?

Html chrome mobile中的onclick on按钮上的蓝色高亮显示?,html,css,Html,Css,当我点击移动chrome中的按钮时。蓝色会出现几秒钟。如何删除它?我想设计一些我自己的风格,比如连锁反应。我在inspect工具中找不到任何附加到它的伪类 例如: a:active {color: red } 这是默认行为 *:focus { -webkit-tap-highlight-color: transparent; outline: none; -ms-touch-action: manipulation; touch-action: manipul

当我点击移动chrome中的按钮时。蓝色会出现几秒钟。如何删除它?我想设计一些我自己的风格,比如连锁反应。我在inspect工具中找不到任何附加到它的伪类

例如:

a:active {color: red }

这是默认行为

*:focus {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

这是一个只出现一秒钟的动画。我相信a:active将聚焦并使链接颜色变为红色,直到我们单击屏幕上的其他位置。尝试使用active,focus。将代码放在此处请发布相关css单击汉堡,然后在手机中的链接。你会知道我在说什么。我们在问到目前为止你用过什么代码。在这里共享代码
*:focus {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}