Closed
Description
CSS Lists introduces position: marker
, and it says
An element with
position: marker
counts as absolutely positioned.
However, CSS Display says
A box is out-of-flow if it is floated (via
float
) or absolutely-positioned (viaabsolute
orfixed
positioning).
It does not mention marker
despite including fixed
, which also counts as counts as absolutely positioned.
Is marker
out-of-flow or not?