I have the following textbox in an MVC6 form.
<input type="text" asp-for="EmptyTask.TaskDetails" placeholder="New Task" class="txt-newTask" />
And the following CSS:
.txt-newTask{
height: 150px;
min-width: 400px;
max-width: 400px;
}
This appears as such:
The "New Task" text appears in the center of the textbox, and continues off the right hand edge if I continue typing.
My goal is to have a single textbox that stretches across multiple lines within that same box.
Any ideas? Thanks!