I am trying to place a div within a page at specific coordinates without affecting the rest of the content on the page.
My initial approach was to give the parent container a position: absolute and the floating div a position: relative, then setting the position in pixels. However, this caused the content on the page to shift, and I need the rest of the content to stay in place even when the div overlaps it.
Any suggestions on how to achieve this?