Relative Position without Empty Space — CSS
To position a div relatively or any html element without leaving the unwanted empty space use the following code.
<div style="position: relative"> <div style="position: absolute; left: 300px; top: 300px"> <!-- Your Item --> </div> </div>