I am helping my friend today. He came across an issue that he wants a textarea to display in a height of 30px with scrollbar. Unfortunately if we give a height to the textarea the scrollbar is not shown but its working when we use the mouse scroller/keyboard up and down navigation keys.
Css
<style type="text/css">
.txtarea { height:50px; overflow-y:scroll; }
</style>
Html
<textarea class="txtarea"></textarea>
Please help.