Search code examples
htmlbloggerpostsvisited

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


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


Solution

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

    a:visited { 
      color: pink;
    }