a:visited was not working in firefox

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • srinivasreddypn
    New Member
    • May 2007
    • 10

    a:visited was not working in firefox

    Hello everybody,

    my css code for links in html page is

    a:link
    {
    color: #EC6F84;
    }

    a:visited
    {
    color: #0170B6;
    }

    a.screen:link
    {
    color: #0E648E;
    }

    a.screen:visite d
    {
    color: #0E648E;
    }

    Everything works fine in IE. But some problem with firefox. After i clicked on a link in firefox it didn't changed to visited color. can anybody tell me how to solve this problem. ANY HELP WILL BE GREATLY APPRECIATED.

    SINCERELY,
    pnsrinivasaredd y
  • drhowarddrfine
    Recognized Expert Expert
    • Sep 2006
    • 7434

    #2
    It should work. Make sure you have the class name and href set and clear your cache/history. Your first a:link and a:visited will affect the second because the first will be applied to ALL links.

    Comment

    Working...