Excluding a class from the universal selector?

is there a way to do it with one rule?

-----Original Message-----
From: www-style-request@w3.org [mailto:www-style-request@w3.org]On Behalf Of Daniel Glazman
Sent: Thursday, December 07, 2000 5:35 PM
To: Manos M. Batsis
Cc:
Subject: 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 11:06:19 UTC