Skip to content

Instantly share code, notes, and snippets.

@ecpplus
Created November 25, 2011 02:25
Show Gist options
  • Save ecpplus/1392675 to your computer and use it in GitHub Desktop.
Save ecpplus/1392675 to your computer and use it in GitHub Desktop.
iOSのUIWebView(Safari)で、aタグタップ時に灰色で覆われるのを回避する
a {
-webkit-tap-highlight-color:rgba(0,0,0,0);
}
/*
* or set some color
a {
-webkit-tap-highlight-color:rgba(100,0,0,0.2);
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment