the css answer is the only real solution . the others are not the way to go...
Surround your text into a division
<div class="textbox" >text goes here</div >
that goes where ever your text box goes...
then in your <head > put this...
<style type="text/css" >
.textbox {width:000px;height:000px;overflow:auto; }
</style >
fill in the proper height and width and take out the spaces at the end of the tags.
That should do the trick
|