Forum Moderators: open
this means a cant use "<textarea>"
try a div,
<div style="height:50px;width:200px;overflow:scroll">
content content content content content content content content content content content
content content content content content content content content content content content
</div>
or if you only want a vertical scrollbar
<div style="height:50px;width:200px;overflow-y:scroll">
Instead of forcing the scrollbars you can allow the div itself to decide whether it needs them (x or y) if you use overflow:auto
Obviously though, the user can't edit the content of a div or post it as part of a form.