本文介绍了iOS深灰色框活动风格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在行动Safari浏览器中触摸连结或任何有onclick事件的物件时,元素上会出现一个深灰色方块。

When touching a link or anything with an onclick event in mobile safari a dark gray box appears over the element. What is this called and what CSS selector can I use to get rid of it.

谢谢!

推荐答案

这是-webkit-tap-highlight-color。以下是一些额外的信息:

It's the -webkit-tap-highlight-color. Here's a little extra info for you:

/* webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #aa0000; }

/* To set it to none use a totally transparent RGBA */
a:link { -webkit-tap-highlight-color: rgba(0,0,0,0); }

您还可以查看查看支持的CSS属性。

You can also check out the Safari Mobile developer docs to see the supported CSS properties.

这篇关于iOS深灰色框活动风格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 14:47