When I define a color for :visited it seems to go back to the parent's color first before applying the color for the :hover style:
body {
color:black;
}
a {
color:inherit;
-webkit-transition:ease 3s;
}
a:visited {
color:pink;
}
a:hover, a:visited:hover {
color:yellow;
}
Is there a hack/fix for this?