Google
 

« Who Is Funding Spyware?         Patenting Autofill »

Making Visited Links Look the Same as Unvisited Links

Posted January 13, 2005 – 2:05 pm by Yakov Shafranovich in Programming

One of our customers had recently requested a feature to make all links look the same, visited or unvisited. While debates and complaints have been raised about whether they should look the same, in our case this was necessary. A web application such as ours usually dynamically generated all the content. That means that links may stay static but their content changes. Therefore, visited links make no sense in a dynamic system.

In any case, the way I made them look the same is via the following piece of CSS:

A:link {color: blue}
A:visited {color: blue}

Tags: ,

Permalink | Trackback URL | This post has

Sorry, comments for this entry are closed at this time.