I have a table whose tds are created dynamically. I know how to get the first and last child but my question is:
Is there a way of getting the second or third child using CSS?
|
I have a Is there a way of getting the second or third child using CSS? |
||||
|
|
|
For modern browsers, use If you need compatibility with IE older than version 9, use sibling combinators or JavaScript as suggested by Tim. Also see my answer to this related question for an explanation and illustration of his method. |
|||||||||||||
|
|
For IE 7 & 8 (and other browsers without CSS3 support not including IE6) you can use the following to get the 2nd and 3rd children: 2nd Child:
3rd Child:
Then simply add another If you want to support IE6 that can be done too! You simply need to use a little javascript (jQuery in this example):
Then in your css you simply use those class selectors to make whatever changes you like:
|
|||||||||||||
|