As long as I see when I position an element (for example flash player) relatively to previously placed image as in the example
style="display: block; width:216px;height:164px; position: relative; top: -306px; left: 63px"
the place that it intended to use before is looked occupied, i.e. next element will be shown AFTER that place. But I need to tell the rendered that I no longer need this place and that the next element can be rendered as if the relatively placed element didn't appear at all.
The only solution I found is to wrap the content in an external div with with the dimensions of the main image and "overflow: hidden"
Is there a better (or "right" as in the title) way to do the same?