How to allow multiple line texts for input type=text
?
For example, I have text called "my name is krishna and I am new to here"
This is the input text value I want to display in multiple lines.
Like :
myname is krishna </br>
and I am new to here
I have tried
word-wrap: break-word;
word-break: break-all;
white-space: pre-wrap;
Would need some ideas to do this. How can we achieve input type is text wrapping into multiple lines.