Search code examples
htmlcsshref

ahref - hide selection color


I am using a bit of HTML in my IPhone application. I don't have much idea about HTML.
When we touch any hyperlink(ahref in HTML) there is a blue selection color that appears in "li" which contains ahref. How can we disable it?


Solution

  • You can override the behaviour by specifying your custom color for links via css:

    a { color:green; }
    

    Or based on their status eg active, clicked, etc:

    a:active { color:green; }
    a:visited { color:red; }
    a:hover { color:orange; }