Reputation: 6955
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) as well)
This disables this highlight behavior on iOS5 and Android 4. Android 2.3.4 doesn't highlight as well (I suppose it just doesn't have this behavior).
But on Galaxy Tab 10.1 the gray box is still there - any way to fix it?
Upvotes: 3
Views: 2267
Reputation: 76
Your problem can be solved with:
* {
-webkit-tap-highlight-color: transparent;
}
Upvotes: 6