I've got an HTML document that includes multiple span elements.
<span>Skip to content</span>
There are several of these span elements throughout the document.
I've attempted to hide them using the following CSS:
span {display: none;}
However, this code does not appear to be selecting anything or hiding the elements.