0
How do i put every word in a line
2 Respuestas
+ 5
Using break tag <br/> or <br>
+ 1
Ipang I wouldn't recommend this, that would make every element inside body display as a block element, using <br> is better, he could also use white-space: pre-line;. Med Hedi Bejaoui put the inline elements inside a block element such as a paragraph or a div and inside the block element write style="white-space: pre-line;".