Showing how to create various block-level multil-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; because Mozilla doesn't support this, it uses display:table-cell. The latter is less flexible (no margins, and items can't wrap to the next line) but it's the best Mozilla can do.
Note that for this to work with IEWin, you must use <span> and not <div> tags. Why? Who knows...because Microsoft is dumb.