Visited links strike

Visited Links strike can done siply by using the following type by applying the following CSS to the Text.

a:hover
{
color:#222C39;
text-decoration:none;
}
a:visited {
text-decoration: line-through;
opacity: .25;
filter: alpha(opacity=25);
}

If you visit any news link after page refresh the title should be strike-out. It’s a very basic CSS tips using element a:visited. Just take a look at live demo in the site,OurSignal.com

Follow

Get every new post delivered to your Inbox.