Text-decoration not working

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>
8.Swinging from branch to branch

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
ul li a
{
text-decoration:none;
font-family:Cursive;
}
Oops, try again. It looks like you accidentally removed the text-decoration from the link outside the unordered list.

```

Replace this line with your code.

<do not remove the three backticks above>

you shouldn’t put ul in the selector it isn’t needed in the assignment its just about the element that are children of li element.

 li a { 
  text-decoration: none;
  font-family: cursive;
}

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.