View Full Version : relative positioning of div layer?


Andzia
04-18-2005, 05:05 PM
Hey you all HTML freaks... I need some help. I always position my div layers with 'absolute' positioning, like: position: absolute; left: 10 px; top: 10 px;
And now I need to place a little div layer just at the bottom of my page, under two other divs. Do you know how to make that 'relative' positioning, like 10 px down from layer 1 and 10 pixels to left from layer 2?

Monkey Bizzle
04-18-2005, 07:50 PM
Do you know how to make that 'relative' positioning same way that you do absolute positioning but it's position: relative;

pb&j
04-18-2005, 08:05 PM
absolute = the starting point is at 0 left 0 top of the window.

relative = the starting point is where the object would normally appear (without any positioning on it).