>>http://dorward.me.uk/www/centre/#inline
> Okay...that seems to make sense, but I must be doing something
> wrong. The images, while centered, are still butted up against
> each other. What I want is to have them spread across the entire
> width.
How so? The images scaled so between them they take up the entire width of
the paragraph? One image aligned left and the other aligned right? Neither
of those would actually be centred.
> <style type="text/css">
> p.c1 {text-align: center}
> </style>
"c1"? That's a pretty meaningless class name. You should probably reconsider
it so that when you come back to edit it (however many months down the line
it is) you know what the purpose of the class is.
> <p class="c1"><img src="image1.jpg" width="105" height="220">
> <img src="image2.jpg" width="105" height="161" /></p>
Neither image has the non-optional alt attribute, one using HTML style
syntax while the other uses XHTML style syntax, and I don't think that the
content of the paragraph actually is a paragraph - so it should probably be
a <div> rather than a <p>.
> Also, once I resolve that issue, I would like to have the taller one
> centered vertically against the shorter one too. How would I do that
> ?
http://www.w3.org/TR/CSS21/visudet.html#line-height

Signature
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
>>> I want to have 2 images side by side and centered across the
>>> entire width
[quoted text clipped - 22 lines]
>
> Joe
http://www.w3schools.com/css/css_reference.asp#padding can help you do
both. I rarely recommend setting padding to a pixel size but when
using it with images, it is sometimes appropriate. To center your
taller picture vertically, set the top padding accordingly. You can
set left and right on your img elements to leave a bit of space between
while still centering the two together.

Signature
Stan McCann "Uncle Pirate" http://stanmccann.us/pirate.html
Webmaster/Computer Center Manager, NMSU at Alamogordo
http://alamo.nmsu.edu/ There are 10 kinds of people.
Those that understand binary and those that don't.