在設計需要顏色循環的表格時你會怎麼作?
Rails
初入門者
使用兩種不同 HTML class : even 與 odd,上不同的顏色
懂一點 Ruby
Ruby 裡面有 each_with_index,不需要在外部宣告 count
熟 Rails Helper
Rails 有 cycle 這個 helper,可以做出循環效果
熟 CSS
使用 pseudo class 中的 nth-child
用法::nth-child(an+b)
小結
快改用 nth-child,不要繼續在 class 裡面寫 even, odd, one, two, three 了 XD