On Sun, Jan 26, 2003 at 06:30:03PM +0100, Robert Land wrote:
> Intention is to define font-bold _only_ for
> one column in a table.

This may be a question that webdesign-L could help you with. However, I'd
recommend trying the following:

I think you're trying to use HTML, although I'm not entirely clear from
your email. This is how it's done in HTML:
<table>
        <colgroup>
        <col style="font-weight: bold;">
        <col style="font-weight: normal;"> <!-- this could be omitted -->
        </colgroup>
        
        <tr>
        <td>styled in bold</td>
        <td>styled in normal weight</td>
        </tr>
</table>

You missed the style attribute and just used the CSS value: property
(which won't work).

Hope that helps...

emma

-- 
Emma Jane Hogbin
[[ 416 417 2868 ][ www.xtrinsic.com ]]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to