Css How to remove blank lines [closed]
How can I remove empty lines with css?
I want to ignore the <br>
s in the text
Funny question...
br {display: none;}
;-)
If you are trying to remove whitespace created using <br />
tags then I don't believe that this can be done using CSS.
You could use JavaScript to remove the whitespace, however the most elegant solution would be to create whitespace using CSS in the first place using margins and padding.
精彩评论