PDA

View Full Version : Absolute Positioning



bmorrise
March 20th, 2007, 03:54 PM
Is is possible to have the inner div be absolutely positioned to the window and not to the outer div?

<div style="position:absolute;left:200px;top:200px">
<div style="position:absolute;left:20px;top:20px"></div>
</div>

Icy Penguin
March 20th, 2007, 04:37 PM
Absolute positioning positions an element relative to the window.

Relative positioning positions relative to the element it's inside.