I have css as following and would like to have an effect works that after visiting, the bold word would appears to be normal weight. The a:visited for font color works but doesn't work for font-weight. And I tried with p-tag doesn't work, either. I need this tag to work with h-tag though.
a:link h2{
color: #FF0000;
text-decoration:none;
font-weight:bold;
}
a:visited h2{
color: #00FF00;
font-weight:normal;
}
a:hover h2{
color: #FF00FF;
text-decoration:underline;
}
a:active h2{
color: #0000FF;
}
Is there anyone can help with this? Thanks. trying in plunker here now