According to Mozilla Developer Network's article on CSS position
property, setting position
as absolute
has the following behavior:
absolute
Do not leave space for the element. Instead, position it at a specified position relative to its closest positioned ancestor if any, or otherwise relative to the initial containing block. Absolutely positioned boxes can have margins, and they do not collapse with any other margins.
However, in the official CSS specification as of 2015 I cannot find where does it states the constraint that the containing box or closest ancestor needs to be positioned (i.e. has to have a computed positioned property of either relative
, absolute
, fixed
or sticky
). How is it deduced or implied?
It's in the spec (you were looking at the wrong document):
This is relevant, as well: