Scrolling!

liunx

Guest
How do i make a scrolling frame/table..thats inside the main page. for example..say you have a section about news in a small window..some sites let you scroll down within that little window. I want to be able to put text in inside..and be able to scroll inside the little window, not the entire Page! just whats inside the small window/frame/table with text! ? Get what im saying? Thx.<!--content-->you can use an iframe<br />
<br />
<iframe src=http://www.htmlforums.com/archive/index.php/somepge.html height="50" width="50" frameborder=0></iframe><br />
<br />
you can put that anywhere you want<!--content-->And if you just want to use local text and avoid frames:<br />
<br />
<div style="position:absolute;left:25;top:100;height:200;width:150;z-index:20;overflow:auto"><br />
all your content goes here<br />
</div><br />
<br />
The z-index is not really necessary, but if you decide to make it dragable, that will make sure it is on top of other layers.<!--content-->
 
Back
Top