css – 删除灰色背景链接点击在ios safari

前端之家收集整理的这篇文章主要介绍了css – 删除灰色背景链接点击在ios safari前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当您点击(触摸)iOS中的Safari中的链接时,您会在链接后面留下一个灰色背景(仅在您握住它时)。有没有办法使用CSS删除iOS Safari的此功能

请参见下面的示例图片

解决方法

Webkit有一个特定的样式属性:-webkit-tap-highlight-color。

复制者:http://davidwalsh.name/mobile-highlight-color

/* light blue at 80% opacity */
html {
    -webkit-tap-highlight-color: rgba(201,224,253,0.8);
}

/* change it for a div that has a similar background-color to the light blue tap color */
.blueDiv {
    -webkit-tap-highlight-color: rgba(251,185,250,0.9);
}

如果您想要删除突出显示完全 –

.myButton {
    -webkit-tap-highlight-color: rgba(0,0);
}
原文链接:https://www.f2er.com/css/221977.html

猜你在找的CSS相关文章