I would like to add a scrollbar to a textarea, so that it always appears, even when there is nothing to scroll down to. If there is nothing for it to scroll down to, I would prefer if it could be greyed out, indicating that there is nothing below.
How would I do this?
like this
css
What you need is
overflow-y: scroll;
Demo
HTML:
CSS:
You will need to give your textarea a set height and then set overflow-y
Try adding below
CSS