'Html - long textinput

Is there a way to make text in text input look like textarea .I want the text to start from the top and goes back to line at the end but i don't want to use textarea

textinput : textinput textarea : textarea



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