How to place an object without updating the stream of other objects, but specify the coordinates relative to the parent?
To clarify,
position: relative; top: -30px; left: 600px;updates the stream of the following objects,
position: absolute; top: -30px; left: 600px;does not update the stream, but relative positioning.
I do not need to update the stream, but specify relative positioning. I can also use Javascript solution.
EDIT
I think the best example: I have a document, now I want to place a <p> that is displayed on top of an existing document without changing the flow (think of a watermark). I also have some specific <div class = 'abc'>, for which I know that I want to put a new <p> at coordinate points (600, -30).
source
share