how do you make a caption on top of a picture ?
Titel
|||||||
|||||||
|||||||
float left right top works but float:bottom; does not work ?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=http://www.webdeveloper.com/forum/archive/index.php/"" alt="">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=http://www.webdeveloper.com/forum/archive/index.php/"something.jpg">
</div>
Titel
|||||||
|||||||
|||||||
float left right top works but float:bottom; does not work ?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=http://www.webdeveloper.com/forum/archive/index.php/"" alt="">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=http://www.webdeveloper.com/forum/archive/index.php/"something.jpg">
</div>