I'm interested on showing a block of text when it's not a "  ;" (empty space), otherwise to hide it. I want to use CSS only. The code is:
<div>Some text here</div>
<div> </div>
<div>Another text here</div>
Removing the "  ;" is not a variant. (If you wanted to suggest me using :empty)
Please make attention that the div is global and may randomly placed as well, that's why I'm looking for answer that hides the div that only has 1 character. (or any other variants of it).
Just to make it clear, I can't change the html, it's loading the data from a database, therefore I need to use a CSS file to hide the div content/tag. If it helps somehow, then the text is NOT dynamic and is static, it changes only once as the text is loaded from database.
Thanks in advance!