Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is this sass code valid?

tr:nth-child(odd)
  :background-color #cccccc

Somehow, it does not color my table's alternating rows.

share|improve this question

2 Answers

up vote 3 down vote accepted

What browser are you using? nth-child isn't presently supported in Firefox, or IE. You'll probably have to use the old odd/even classes thing.

share|improve this answer
I am using firefox 3 – Vagmi Mudumbai Jun 19 '09 at 16:06
Then you're out of luck. Sass isn't the problem, the browser is. – Pesto Jun 19 '09 at 16:22

Compass provides mixins for styling your tables with sass, it requires some extra css classes due to poor support of CSS3.

See the Table Utilities section of wiki docs for more information. A demo is here.

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.