Hide the blue area of the web links when you press them from the smartphone view

0

My problem is that I want that on my website, when you browse from the smartphone or tablet view, the blue area does not appear in the links when you click them. When you click on a link, it is filled with a blue color indicating that it is a link.

I tried with outline but it did not work.

Thanks in advance.

    
asked by Iván Navarro 21.09.2017 в 16:20
source

1 answer

1

Try a: link to focus on hypertext links href and not name attributes, for example

a:link {
    text-decoration: none;
    color: black;
}

With text-decoration you remove the typical underlining of the links but it will still come out of the same color, which you will also have to change it

You can then also play with pseudo-classes like a: visited for those already visited

    
answered by 23.09.2017 в 11:47