Showing how to create various block-level multi-line items (e.g. pictures with captions underneath) that display inline.

ab
cd
ef
gh
ij
kl
mn
op
qr
s
t
uv
w
x
y
z

Safari and IE use display:inline-block; for a browser that doesn't support this (FF2) it uses display:table-cell. The latter is less flexible (no margins, and items can't wrap to the next line) but it's better than nothing.

Note that for this to work with IEWin, you must use <span> and not <div> tags. (Why? Because Microsoft is dumb. See, however, this article that shows how to make it work in IE.)