-webkit-tap-highlight-color In Android 3 Browser
We have a form with a number of inputs. Whenever I tap the form, it's highlighted gray. I have * { -webkit-tap-highlight-color: rgba(255,255,255,0); } (I used rgba(255,255,255,0)
Solution 1:
Your problem can be solved with:
* {
-webkit-tap-highlight-color: transparent;
}
Post a Comment for "-webkit-tap-highlight-color In Android 3 Browser"