How can I place an object without updating the flow of other objects, but specify coordinates relative to the parent?
To clarify,
position: relative; top: -30px; left: 600px;
updates the flow of following objects,
position: absolute; top: -30px; left: 600px;
doesn't update flow but is relative positioning.
I need not to update the flow, but to specify relative positioning. I can also use Javascript solution.
EDIT
I think a better example would be this: I have a document, I now want to place a <p> which displays over the existing document without changing the flow (think of a watermark). I also have some specific <div class='abc'>, with respect to which I know that I want to place the new <p> at say coordinates (600,-30).