I have a query regarding the custom input line I created recently.
When I adjust the height
of the input, instead of aligning with the top, the text appears vertically centered. Moreover, the text does not wrap to a new line once it reaches the outermost edge of the box, but rather continues without breaking.
.text-form {
height: 100px;
}
<input class="text-form" type='text' name='inputter' placeholder='bla'>
Any suggestions on how I can resolve this issue?