I have textarea with defaultvalue like this:
<textarea>
One Two Three
</textarea>
How can i display field like this:
One
Two
Three
I have textarea with defaultvalue like this:
<textarea>
One Two Three
</textarea>
How can i display field like this:
One
Two
Three
Assuming you're referring to the placeholder, this has been answered on here: Insert line break inside placeholder attribute of a textarea?
Note there's no simple way, just some hacks that may work in some browsers and not others like using 
 where you want the line break.
<textarea placeholder="one two">
</textarea>
Depending on what you're going for you could set the width or use something like col="5" to force each word to the next line, but that also affects the user input.
Solution: Break with \r\n with default text area. It will work.
"One\r\nTwo\r\nThree\r\nFour"