Hi! Can anyone help me out with what might be wrong with my code here? I’ve tried googling it and looking at other forum posts but I’m still not sure. Thanks.
The default color of a link that has not yet been clicked on is typically blue. The default color of a link that has already been visited from a page is typically purple.
To make the footer
links the same color regardless if a link has been visited, use a type selector for the anchor element (a
) and use the value black
for the color
property.
a {
color: black;
}
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36
Challenge: Step 80
Link to the challenge: