Css How to remove blank lines

How to remove blank lines using css?

I want to ignore <br>in the text

+3
source share
2 answers

Funny question ...

br {display: none;}

; -)

+5
source

If you are trying to remove spaces created using tags <br />, then I do not think that this can be done using CSS.

You can use JavaScript to remove spaces, but the most elegant solution is to create spaces using CSS primarily using margins and indents.

0
source

Source: https://habr.com/ru/post/1795525/


All Articles