0
Loading animation problem
Okay, so for my link I want to change it to white and I put in css color: white I also added text-decoration to none but the underlined thing is still there https://code.sololearn.com/W1CFg858CW3I/?ref=app
1 ответ
+ 2
Make a new CSS rule to be apllied only to the hyperlink, such rule you currently have applies to the <nav> but not hyperlinks inside <nav>.
nav a
{
color: #fff;
text-decoration: none
}