How to provide active or selected links a color on anchor tags?

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

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

a:active
{
color:blue;
}
</style>


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response