css text wrap to next line code example
Example 1: css wrap text to next line
.break-word
{
word-wrap: break-word;
}
Example 2: text overflow break line
white-space: break-spaces;
Example 3: css wrap text next line align right
.justify {
text-align: justify;
text-justify: inter-word;
}
.paragraph {
text-align: left;
max-width: 220px;
word-wrap: break-word;
word-break: break-all;
}