Yes, I know that it does not work with the absolute position, but is there a way to display the elements "below" (after the code) not behind them?
Example:
<img src="image.jpg" style="width: 500px; height: 400px; position: absolute; top: 0;" />
<h2 style="padding: 15px" >This text is behind not below the image</h2>
Is there any way to display h2 under the image, except that it is too positioned?
Example:
http://jsfiddle.net/fDGHU/1/
(yes, I have to use absolute in my case and dynamic marginal content below, and I'm lost: D)
source
share