How to change visited post color, or put badge on it?

116 Views Asked by At

I was wondering if it is possible to use visited pseudo-class to change the color of visited post in blogger's home page?

1

There are 1 best solutions below

8
juancito On BEST ANSWER

You can use the :visited CSS selector to select visited links.

a:visited { 
  color: pink;
}