Click to See Complete Forum and Search --> : caption on top of picture


gert cuykens
11-18-2004, 03:33 AM
how do you make a caption on top of a picture ?

Titel
|||||||
|||||||
|||||||

float left right top works but float:bottom; does not work ?

soccer362001
11-18-2004, 09:17 AM
float:bottom does not work because elements already move to the bottom. All you would need to do is put the title first, then a line break, then the image.

Title<br>
<img src="" alt="">

NogDog
11-18-2004, 09:42 AM
You could put the title and image within a DIV, and apply your CSS that positions it all on the page to the DIV element:

<div class=picture>
<h3>Picture Title</h3>
<img src="something.jpg">
</div>