PDA

View Full Version : Need some simple HTML help with scrolling in a table's cell


uReside.com
08-26-2004, 03:06 PM
I'm trying to get a my cell to be able to scroll with in itself, can anyone help me do this?

Gary King
08-26-2004, 06:20 PM
So basically, frames is what you want? You could use some simple <iframe> code (I'm not sure if that's the exact one - frames suck!) :)

uReside.com
08-26-2004, 08:32 PM
not frames, i just want to be able to input alot of pictures inside a cell of my table, with out the cell changing its size, i want a scroll bar on one side of it so you can view all the pictures.

Gary King
08-26-2004, 08:33 PM
You need a frame then.

Zachery
08-26-2004, 08:33 PM
not frames, i just want to be able to input alot of pictures inside a cell of my table, with out the cell changing its size, i want a scroll bar on one side of it so you can view all the pictures.
Not true gary, you could use iframes (inline frames) or you can use a div considering we are pulling the content on the same page divs and i believe other box elements can make use of the overflow CSS attribute.

like my site
http://www.usshomestarunner.com

As you can see it, looks like a frame, but it is not a frame.

<div style="overflow: auto">
content here
</div>