html5 – 使用光标:指针触摸/按下对象时,禁用蓝色突出显示

前端之家收集整理的这篇文章主要介绍了html5 – 使用光标:指针触摸/按下对象时,禁用蓝色突出显示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当Chrome中触及具有cursor:pointer属性的Div时,会出现一个蓝色高亮显示.
我们如何摆脱它?

我已经尝试过以下内容

-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;

但是它们不会在按下光标时影响蓝色高亮.

解决方法

-webkit-tap-highlight-color:  rgba(255,255,0);

照顾这个问题,因为它使高亮颜色透明.

资料来源:http://samcroft.co.uk/2012/alternative-to-webkit-tap-highlight-color-in-phonegap-apps/

原文链接:https://www.f2er.com/html5/168155.html

猜你在找的HTML5相关文章