Forum How do I...?

position an element absolutly on a page

dsusco
I'm trying to place an img on the bottom of a page.

This will throw it to the very end of the document: <img alt="" src="" style="position:absolute;bottom:0">

If I wrap it in a section however it will work <section><img alt="" src="" style="position:absolute;bottom:0"></section>

I'm assuming there's no way to do this without the extra semantics of the section?

If any developers are reading this Prince is a great application.
mikeday
How about using page floats: "float: bottom"?
dsusco
Thanks, that did the trick.