Recently I encountered some HTML code that caught my attention:
<address>telephone no <span>-</span> Some Street 2 <span>-</span> 9999 ZZ Place <span>-</span> Something else</address>
This particular piece of code is located on a responsive website and, specifically on a smaller viewport, I have the desire to make the following lines invisible:
Some Street 2 <span>-</span> 9999 ZZ Place <span>-</span>
I am seeking a method using only CSS to achieve this without any modifications to the HTML code. While I understand that simply adding a div with a class could serve this purpose, there are certain restrictions preventing me from pursuing this option.
Your insights and advice on this matter would be greatly appreciated!