Following code:
<li>
<a href="...">bla</a>
<span>blabla</span>
hidethistext
</li>
How could I hide the "non-element" "hidethistext" with display:none
using CSS without affecting everything else? Meaning, what would be the right selector?
Tried using :not(..)
but that seemed not the right approach.