What's the neatest way to caption images on the web using the latest in HTML/CSS? Demo code please.
|
feedback
|
|
I couldn't explain it better than this article: http://www.cs.tut.fi/~jkorpela/www/captions.html | |||||||
feedback
|
|
There are several semantic ways to markup an image and its caption. Old school wayAn old school method is to use HTML definition lists, see Image captions the semantic way. (There are other nice tutorials demonstrating this method.)
MicroformatThere is also a figure microformat which applies on any regular markup:
HTML5And HTML5 now provides a clean straight method for images with captions through the
| ||||
|
feedback
|
|
I know I've seen a number of articles with some good code over at www.alistapart.com - but here's one to start you off: http://www.alistapart.com/articles/practicalcss/ | |||
|
feedback
|
|
| |||||
feedback
|
|
This is what I would do
If there's a risk of the text running over more than one line you'll want to make the value of N bigger, otherwise 20px will do.
Putting the caption before the image in the markup and making it a heading is I think as close as you can semantically get to saying "this is a picture of ..." | |||
|
feedback
|
|
It's hard to list all the details in a post here. Here's a few links that discuss CSS Image Captioning in depth: Semi transparent image captions using CSS Semi transparent image captions using CSS and Javascript CSS Image Captioning with Reusable Rounded Corners and finally a standalone tool that generates the CSS code necessary to caption an image: | ||||
|
feedback
|