Click to See Complete Forum and Search --> : I want scrolling into a DIV


jedifra
10-24-2003, 04:15 PM
Hi,

I know that I make scrolling in iframe but, I want to scroll into a DIV

How Can I do this?

Khalid Ali
10-25-2003, 08:02 AM
use CSS and give your div height and width,then enter the contents in the div thats not viewable in the div because the content flows out of the viewable area,then set
overflow:auto; property in css and div will have scrollbars.

jedifra
10-30-2003, 12:02 PM
Thank you Cheers

I donīt want abuse of you, but, do you have a simple code example?

Thanks again.

TomDenver
10-30-2003, 02:50 PM
<div style="width:300px; height:120px; overflow:auto;">Div Contents Here.</div>


The scrollbar will only appear if your div contents overflow the div.