position:relative leaves an empty space

Another trick which worked fine for me is to use a negative margin-bottom in the relative element that you have moved. No need to go with absolute positioning.

Something like:

position: relative;
top: -200px;
left: 100px;
margin-bottom: -200px;

Similar (if not identical) to the solution I see now, from green.

Leave a Comment