How to insert a blank line in HTML
There are a lot of good responses, and some other not so good. But I will sumarize.
Depends on what do you need and what do you need it for.
First, the wrong aproach.
You should not use a blank paragraph
Hi, I am a paragraph
I am another
because you do not get a blank line, you get a blank paragraph.
Some options. Real blank line on a paragraph.
The specific tag to do that in html is the
tag but you need to use two of them. The first one interrupts the current line, the second one gives you this extra blank line.
Hi, I am a line
- I am another line.
But this should be used if you really mean “blank” line. But I can not think on where you need this case.
Note.
NON è deprecato, ha un significato semantico molto specifico: https://www.w3.org/TR/html51/textlevel-semantics.html#the-br-element
Un suo utilizzo è per esempio una poesia, dove è necessario inviare un nuovo verso in una nuova riga, ma rimanendo sullo stesso paragrafo.
Tabella
Se ne hai bisogno su una tabella puoi semplicemente lasciare il rispettivo
vuoto. Probabilmente hai bisogno di lasciare tutti i td di una riga vuoti. Potresti usare il colspan in modo da usare solo 1 td.Con i CSS
Questo dipende da dove vuoi questa linea vuota. Puoi usare l'unità em in modo che questa dimensione reagisca alla dimensione del testo su cui stai lavorando.
- Alla fine di un paragrafo puoi lasciare un margine o un padding.
- p {margin-bottom: 1em;}
- Tra le righe di un paragrafo. (Puoi usare anche %)
- p {line-height: 2em;}
- p {line-height: 200%;}
- Se il tuo testo sta usando il tag pre, devi semplicemente mettere una riga vuota usando il tasto invio.
- This is a line
- This is another line
An aditional option, if you for some reason are using a programming language, you can escape the new line twice, as a simmilar case of the
tag. These can be on a single row, I am formating it like this, simply to make it clear.
- This is a line /r/n/
- /r/n
- This is another line.
So.
H
A
V
E
F
U
N