How to provide a visited links a color on anchor tags if a user has already visited the links?

 Posted by vishalneeraj-24503 on 8/1/2014 | Category: CSS 3 Interview questions | Views: 1569 | Points: 40
Answer:

Use visited class and inside this class provide any color code as follows:-
<style type="text/css">

a:visited
{
color:red;
}
</style>


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response