Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a table with 10 columns . How I can write css classes that set style for all TDs in 2 or 7 position ?

share|improve this question

1 Answer

up vote 3 down vote accepted

Something like:

tr td:nth-child(2), tr td:nth-child(7) {
    /* style here */
}

It's not supported in IE8. But here's a very nice polyfill: ie9.js.

Alternatives:

  1. Use jQuery
  2. Add a custom class to each 2nd and 7th td
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.