View Single Post
  #4 (permalink)  
Old 10-14-2007, 09:29 PM
davHunter davHunter is offline
Newbie
 
Join Date: Oct 2007
Posts: 8
Rep Power: 0
davHunter is on a distinguished road
Default

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!
Reply With Quote