Is it possible to have a long string automatically move to the next line without breaking any characters in the string, rather than splitting the word between lines?
The current display looks like this:
My sample text ha
s errors as it is
displaying a long
strings in next l
ine with breaking
the word.
I would like it to look like this:
My sample text has
no errors as it is
displaying a long
strings in next
line with breaking
the word.
Could you provide an example using jsfiddle or something similar?
Thank you in advance!