删除在ios safari中点击的链接上的灰色背景

当您点击(触摸)iOS版Safari中的链接时,链接后面会出现灰色背景(仅当您持有该链接时)。 有没有办法使用CSS删除iOS Safari的这个function?

请看下面的示例图片:

在这里输入图像说明

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, 0, 0); }