Hello, as you can see in the image, the input is larger than the part that I type the text and if I continue typing it does not break the line, what should I do ??
Hello, as you can see in the image, the input is larger than the part that I type the text and if I continue typing it does not break the line, what should I do ??
You can not. The only HTML element made to have multiple rows is <textarea>
:
<textarea cols="30" rows="5"></textarea>
From HTML 5 you can use the wrap="hard"
attribute to force automatic line wrapping.