Search code examples
htmlcsshyperlinkvisited

html css links visited


my links turn purple sometimes, probably becouse they are visited or something. I want to disable this from css.

How can i do this?

thanks in advance, yours lovely alexander


Solution

  • You can use the selector a:visited.

    a:visited {
      color : black;
    }