'Html - long textinput
Solution 1:[1]
It is not possible to use <input> tag with multiline. If <textarea> is not an option, then the only option is to use contenteditable attribute
<div contenteditable="true" style="width: 230px; height: 230px; word-break: break-word;" >
some text
</div>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Cholowao |


