> hey all,
> i have a 4x4 table where each cell has a cssClass assigned. there's a range
> of cells in a column that i'd like to align center. i know i can get each
> cell and do align center on it but i was wondering if there was other ways to
> get to that range of cells and set its attributes?
In order for a CSS selector to pick out any set of elements there must be
something about them that indicates they belong to the selection.
If you want to apply a style to only a subset of cells that is neither a
whole row or column you will need to apply an additional class name (note
the class attribute in HTML can contain multiple names) to the cells that
require additional formatting.

Signature
Anthony Jones - MVP ASP/ASP.NET
rodchar - 21 Mar 2008 04:13 GMT
thanks Anthony for the help, i didn't know that.
rod.
> > hey all,
> > i have a 4x4 table where each cell has a cssClass assigned. there's a
[quoted text clipped - 11 lines]
> the class attribute in HTML can contain multiple names) to the cells that
> require additional formatting.