Re: help: styling a column with :first-child?

Manos M. Batsis wrote:

> 
> Hallo,
> I'm trying to style every first TD in a table so I give:
> 
> table tr:first-child{text-align:left;}

This selects all tr in a table that are also the first child of
their parent element, ie of a tbody tfoot or thead. Not cells.

The effect you are looking for can be achieved with the following
selector :

   td:first-child, td:first-child { ... }

</Daniel>
-- 
Daniel Glazman        Netscape Communications          Composer Team
http://people.netscape.com/glazman   #AIM:glazou2000  +33 1 41975746
glazman@netscape.com              Act if you can, teach if you can't

Received on Thursday, 7 December 2000 10:34:57 UTC