absoluteNG: Parent has no position, so the child flies to the top-right of the page
→ The child is placed at the top-right of the page, not this demo box (scroll up to confirm)
OK: Add position: relative to the parent to make it the reference
→ The child is correctly placed at the top-right of the parent
sticky not workingNG: overflow: hidden on the parent breaks sticky
OK: Remove overflow: hidden from the parent and sticky works
fixed not working inside transformNG: An ancestor with transform makes fixed relative to that ancestor instead of the window
→ Due to transform, this red box is positioned relative to .animated-wrapper
OK: Place the fixed element outside the ancestor that has transform
→ Move the fixed element outside the transform ancestor to keep it window-relative