Render Flow - Position absolute
[Parse CSS] -> [Find position:absolute] -> [Remove element from normal flow] -> [Calculate offsets (top/right/bottom/left)] -> [Position relative to nearest positioned ancestor or viewport] -> [Paint element at new position] -> [Composite layers]
The browser reads the CSS, finds the element with position:absolute, removes it from the normal page flow, calculates its position based on offsets and the nearest positioned ancestor, then paints it at that new spot.