Chris Morse wrote:
Hello,

I would like to add a copyright symbol just to the right of a logo which is
centered horizontally on the page.  I would also like the top of the
copyright symbol aligned with the top of the image.

Here is the table equivalent of what I am trying to do (but am trying to
learn how to do things the right way):

<table width="100%">
        <tr>
                <td></td>
                <td align="center"><img src="logo.png"></td>
                <td valign="top">(c)</td>
        </tr>
</table>

Another thing which I can do easily with tables is evenly space X items
across a page (e.g. 5 images).  Is there a way to do this with CSS?

Wrap both in one div and center the div.
<div class="centerblock">
        <img src="logo.png" alt="">(c)
</div>

See several CSS centering methods in our WIKI:
http://css-discuss.incutio.com/?page=CenteringBlockElement

--
Bob Easton
Accessibility Matters: http://access-matters.com

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to