Tuesday, April 3, 2012

Android browser GREEN border on click


I want to develop a web application using HTML, CSS and Javascript one thing that is really annoying is that any link or button etc when clicked inside the Android browser gets highlighted with a green border.



To demonstrate what I mean I have included a link to a page that contains a basic game written in CSS



http://marbles2.com/app/



Is there any way that you are aware of to disable the click green border?



Cheers



Paul

2 comments:

  1. In your CSS stylesheet (the one in your web application), add this:

    * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }

    ReplyDelete
  2. Try this in your style:

    style="-webkit-tap-highlight-color:rgba(0, 0, 0, 0);"

    Hope this helps.

    ReplyDelete