I'd like to change the visited color for just two of the links on my page. Is there a way for me to do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Put a class on just the links that you want a different visited color for, for example:
In CSS then style that class of link that has been visited in whatever way you want, for example:
This uses the :visited pseudo-class to style only visited links. |
|||
|
|
|
Yes, there is a way to do this. Give those two links a special CSS class, then use the
Then, in your stylesheet:
"Link one" will, when visited, appear in purple. Link two, when visited, will appear in pink. |
|||
|
|
|
If you don't want or can't add class to your anchor tags as @Adam suggested:
|
|||
|
|
<a class="changeable">name</a>and then alter it in css – manix Jul 16 '12 at 21:58