Hi!
One way to do it it's with the CSS overflow property.
Using a div it would look like:
HTML Code:
...
<div style:"height=xxx; width:xxxx; overflow:scroll / auto">
This text will be moveable...!!!
</div>
...
scroll gives both X and Y axes..., auto gives only Y axis.
Ciao!