image caption left aligned under centered image
I have some images with captions. The images are centered on the sites and the caption should be shown under the images. Very simple so far but here's the problem: the captions should be left-aligned and start under the bottom-left-corner of the image (like in newspapers)
I can think of a solution with tables but I don't like it because tables are here to show table data and not images and image captions
table solution:
<table class="centered-table"&g开发者_StackOverflow中文版t;
<tr><td class="image"><img src="stackoverflow.jpg" /></td></tr>
<tr><td class="caption">Unanswered question on stackoverflow.com</td></tr>
</table>
I would use <figure>
and <figcaption>
with a tiny bit of display: table
to get the effect you want.
See this Example
Hmmmmmmm
<style>
.centered {text-align:center;}
.wrapper {display:inline-block; text-align:left;}
</style>
And
<div class="centered">
<div class="wrapper">
<div class="image"><img src="someimage.jpg" /></div>
<div class="caption">Some caption text!</div>
</div>
<div class="wrapper">
<div class="image"><img src="someimage.jpg" /></div>
<div class="caption">Some caption text!</div>
</div>
</div>
or what? :)
Enclose your picture and title in a div, and give it an inline-block display style.
<div id="article">
<div class="title"><div>
<img src="picture.jpg" />
<em>Caption for the picture.</em>
</div></div>
<p>rest of the articlce...</p>
</div>
With CSS.
div.title
{
text-align:center;
}
div.title > div
{
display:inline-block;
text-align:left;
}
精彩评论