html – Add a scrollbar to a
html – Add a scrollbar to a
What you need is overflow-y: scroll;
textarea {
overflow-y: scroll;
height: 100px;
resize: none; /* Remove this if you want the user to resize the textarea */
}
<textarea></textarea>
Try adding below CSS
textarea
{
overflow-y:scroll;
}
html – Add a scrollbar to a
You will need to give your textarea a set height and then set overflow-y
textarea
{
resize: none;
overflow-y: scroll;
height:300px;
}