Created
November 25, 2011 02:25
-
-
Save ecpplus/1392675 to your computer and use it in GitHub Desktop.
iOSのUIWebView(Safari)で、aタグタップ時に灰色で覆われるのを回避する
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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