I have this HTML:
<ul>
<li>
<ul>
<li>
<a href="#"> <span> Test </span> Link </a>
</li>
</ul>
</li>
</ul>
And this CSS:
ul li ul li span {
text-decoration:none;
}
Why would the span inside the anchor still have underline?
In other words: How would I get all the text underlined, except the SPAN. Thanks