3

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?

4

1 回答 1

6

您的问题可以通过以下方式解决:

* {
    -webkit-tap-highlight-color: transparent;
}
于 2013-07-04T13:52:43.387 回答