this are the instructions
Step 47
To make the navigation buttons look more like typical buttons, remove the underline from the anchor tags.
Then, create a new selector targeting the navigation list elements so that when the cursor hovers over them, the background color and text color are switched, and the cursor becomes a pointer.
and this is my code so far:
li > a {
color: #1b1b32;
text-decoration: none;
cursor: pointer;
}
nav li:hover {
color: #1b1b32;
background-color:#dfdfe2;
transition: 0.7s;
}
Can you guys point in which part I’m not completing it correctly or understanding? Where do I need to focus at?
Thanks in advance
link to the challenge