I am using a simple HTML selector to change the visited link color. This works in Edge and Firefox, but not in Chrome and IE. Any tips would be great.
a:visited {
color: pink !important;
}
<a href="https://www.w3schools.com">W3Sschools</a>
<a href="http://www.wikipedia.org">Wikipedia</a>
<p><b>Note:</b> The :link selector style links to pages you have not visited yet.</p>