+ 1
Word breaks to the next line not "paragraph" ?
I was just wondering because of the wording in the question.
4 Answers
+ 1
I am referring to css
+ 1
word-wrap: break-word;
This code in CSS will edit the "text box" so to speak, but it will not create a new paragraph.
0
I think you are asking about <br /> tag in html.
0
If you mean to specify line breaking rule of p tag, below code break at any letter when reaches at margin edge.
p {
word-break: keep-all;
}