Rule n° 141 - Visited and unvisited links are visually differentiated.
By default, browser style sheets provide different colours for visited and non-visited links. It is quite legitimate to change this unseemly blue and purple, but why not keep this difference which is useful to the visitor?
Goal
- Facilitate the identification of content that has already been visited.
- Facilitate the identification of content that has yet to be explored.
- Encourage users to navigate to new pages.
Solution technique
Apart from the navigation menus, do not apply the same default CSS styles for unvisited links (a or a:link selectors) and for visited links ( a: visited selector). To do this: either provide a specific rendering for the links visited, or do not indicate a rendering rule for them (the default browser style can then be applied without difficulty).
Find out more:
Moyen de contrôle
In each page containing hyperlinks:
- Check that the
: visitedselector is in the CSS style sheets and used, and that the style used is different from that applied toaora: linkor else; - Check that the
: visitedselector is not in the CSS stylesheets to let the default browser style apply