我们有一个适用于Android的phonegap应用程序。
在HTC设备上的Android 4.1.1上,我们遇到以下问题:点按输入框时会显示绿色突出显示。但实际问题是你点击一个框,但下面的框突出显示。但是再一次,轻拍的盒子会聚焦。
我们已经尝试删除它,但-webkit-tap-highlight-color或outline没有解决问题。
答案 0 :(得分:0)
试试这个:
* {
-webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}
body {
-webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
-webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
-webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
/*background-color:#E4E4E4;*/
}