Thread: scrolling text
View Single Post
  #5 (permalink)  
Old Oct 4th, 2005, 02:45
Pheonix Pheonix is offline
Reputable Member
Join Date: Sep 2005
Location: Canada, BC
Age: 24
Posts: 239
Thanks: 0
Thanked 0 Times in 0 Posts
Position a <div> absolutly to where you want your text to start, give it a width and height, and add overflow: auto; to it.

for example
Code: Select all
div#content
{
  position:absolute;
  left:200px;
  top:300px;
  overflow: auto;
}
Reply With Quote