1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

iOSでaタグタップ時にグレーにならない(-webkit-tap-highlight-color: initialが効かない)

Posted at

aタグをタップした時、普通はaタグの領域が一瞬グレーになります。
ところがグレーになってほしいのにならなかった時があるのでその対処方法を残しておきます。
※グレーになるのをやめるのはいくらでも出てくるのですが、逆に出なくなったのを出すようにする方法は出てこなかったので…

理屈は分からなかったのですが、試行錯誤の結果こうすれば良いことが分かりました。

a {
   -webkit-touch-callout: none;
}

あとはaタグがグレーにしたい領域全体に掛かっていることを確認してください。block要素にする必要があると思います。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?