Always show vertical-scrollbar in textarea?

I want to provide a fixed-width area for users to enter text. This width changes when they enter too much text as the vertical scrollbar appears. I want to always show the vertical scrollbar no matter how much text is in the textarea.

Is this possible?

try <textarea style=“overflow:scroll”> (may show horizontal too?)

Awesome. And overflow-y:scroll did it for just vertical.

Thanks!