After a user visits a link, I want the font-weight of the text to go to normal (400).
.title-link {
font-family: 'Open Sans', sans-serif;
color: #264464;
font-size: 16px;
text-decoration: none;
font-weight: bold;
}
.title-link:visited {
font-weight: 400;
}
I read that you can't do this from around 2010+ (https://hacks.mozilla.org/2010/03/privacy-related-changes-coming-to-css-vistited/), is there any way I can do it still?