Hi there,
Most people are aware of
Using absolute positioning on a div whose parent is set to position: relative
will cause the absolute positioned div to become relative to the parent div instead of the body.
My question is, is there a way to remove this effect?
I.E The parent div needs to be set as position relative so it will sit in the layout, however the absolute
div needs to be relative to the body, not the parent div.
How can I achieve this?