If I have an element with an absolute position and I change it's left and top position will reflow to it's parent children? and what about it's own children if they are not affected as they are also absolute positioned by left and top axis?

If I change an element's width/height but have no importance in the parent and in it's children?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

An object with absolute position does not affect the layout of the page. The page is laid out without regard for an absolute positioned object. Moving the absolute positioned object does not cause any reflow of other objects.

Moving an object with absolute positioning will cause it's child objects to move along with it. It will not reflow them, they will just move along with their parent container.

link|improve this answer
thanks! that's perfect to know. This rule is applied to IE6 and IE7+? – Totty Sep 8 '11 at 8:31
It's applied to all browsers. It's how absolute positioning works. – jfriend00 Sep 8 '11 at 14:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.