Why won't my visited link have a background color?

前端 未结 5 1837
轮回少年
轮回少年 2021-01-18 23:47

It seems that a:visited won\'t work in showing background color on my links.

http://jsfiddle.net/davestein/D2srA/

What super simple thing am I missing?

5条回答
  •  抹茶落季
    2021-01-19 00:27

    !important always does the truck

    a:active {color:#0000FF !important;}
    a:visited {color:#0000FF !important;}
    

提交回复
热议问题