visited link color css code example
Example 1: css url do not change color of visited links
a {
text-decoration: none;
}
a:link, a:visited {
color: blue;
}
a:hover {
color: red;
}
Example 2: text underline hover css
a:hover {
text-decoration: underline;
}
Example 3: how to change hyperlink color in css
a {
background-color: red;
color: white;
padding: 1em 1.5em;
text-decoration: none;
text-transform: uppercase;
}
Example 4: css link visited
a:visited {
color: pink;
}