本文介绍了-webkit-touch-callout等效于IE的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用Surface,可以将手指放在链接上,并获得复制选项。这是我不想要的行为。这可以在iOS中通过以下方式禁用:
-webkit-touch-callout:none;
有人知道如何禁用IE吗?
-webkit-touch- callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
Using the Surface, it is possible to hold your finger on a link and get an option to copy it. This is undesired behavior for me. This can be disabled in iOS with:
-webkit-touch-callout: none;
does anyone know how to disable it for IE ?
解决方案
named slightly differently for everything else.
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
这篇关于-webkit-touch-callout等效于IE的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!