Isn't it posible to position something (a div or image) absolutely, relative to something else then the whole document?
My problem:
I have a table and inside a cell I have a div. Inside this div I want to position some images. I was hoping that (for example) posiotion:aboslute top:40px; left:10px; would work, but this puts the images at (40,10) relative to the whole document and not (40,10) relative to the div inside the table cell. Using position:relative doesn't work either, since the images will position themself relative to each other and not relative to the div...
The only solution that I can think of that will work is to use frames. But I really, really don't want to use that... Any suggestions?



Reply With Quote
. I'll get rid of the table, have the middle frame fixed to a specific width and position within it's fram and use position:absolute for my images... Not what I wanted and it will probably not work in the long run since I would like the div with the images in it to be scrollable... I guess I'll see...

Bookmarks