Here I am trying to change the color of lists in the footer. How it is possible? please help anyone
/* unvisited link */
footer a:link {
color: red;
}
/* visited link */
footer a:visited {
color: green;
}
/* mouse over link */
footer a:hover {
color: hotpink;
}
/* selected link */
footer a:active {
color: blue;
}
3 Likes
Thank you.it’s worked!!!