HTML - Newline char in DIV content editable?

Afonso Luis picture Afonso Luis · Sep 26, 2013 · Viewed 43.9k times · Source

I am storing content in the database, for example:

Hello
This
is 
Text

and when I pass that to a textarea, it stays with the new line breaks. But if I pass that text to a div with content editable, it would stay like this:

Hello This is Text

How can I fix this problem?

Answer

Explosion Pills picture Explosion Pills · Sep 26, 2013

Set a style on the div: white-space: pre or white-space: pre-wrap

Example: http://jsfiddle.net/fPv6S/