css on visited link is not working in Firefox
Posted: Mon Jun 10, 2013 7:06 am
I want the visit link have different color , the following code only work on ie not Firefox, what can i do ?
Code: Select all
<style type="text/css">
@media screen{
a:link {
font-family: verdana;
font-size: 9pt;
color: black;
text-decoration: none;
background-color: white;
}
a:visited { text-decoration: line-through;
font-size: 7pt; background:lime;}
}