I’ve been having a good time learning the font styling concepts from MDN, but I’ve come across an issue. The links all change their colour once I click on one, and basically adopt the colour I have set for visited links.
CodePen
Any help would be appreciated!
Hello @George_Daris
the issue that all link are the same all = # so once you visited any of them then all is visited
a:visited mean the page that this a reference is visited even if you visited this link from different site
but why when you load your page it show up it not visited cause your link is # which mean it used to reference an id of an element in your page but since you use only # then the browser did not have a way to check if you visited it or not before
hope that help and have a nice day 
1 Like
That makes a lot of sense. Thank you for the help!
you very welcome @George_Daris