|
Sure.
I started out by putting my images into a table. If you were to look at the page as those images lay out in that table, they take up a certain amount of space.
Then I used css relative positioning to put the images where I wanted them.
The images are now in the desired positions, but *the locations where they would have been without css* are behaving as though something is there. That is, even though the images display in an area that fits entirely on my screen without scrolling, scrollbars still appear because the page is still alotting for the space where the images originally fell, for those images, even though they no longer display there.
If you look at my first link, I left the table border on so you can see what's happening. The images are forcing the table cells to be a certain size, and the page (in particular, it's geometric size, with the associated scrollbars) is being determined by that (now partly vacant) table.
I want the page to end when there is no more content to display, so I'm looking for a different approach.
[Edit: on the second try, I didn't use the table, but just contained the whole thing in a div - same problem, plus I can't get that one to center.]
Last edited by AmyD : 02-19-2005 at 08:50 AM.
|