Yes, I know doesn't work with position absolute, but is there a way to display elements "below" (after in 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 a way of displaying the h2 below the image excepting positioning it absolutely too?
Example:
(yes, I have to use absolute in my case, and dynamic margined content below, and I'm lost :D)
h2 { margin-top: 400px }? I think your example may be a bit contrived; you need to give us a better idea of what you're trying to do. – thirtydot Feb 15 '11 at 21:39