我正在使用Ruby on Rails。 我有一个数据网格的.sass文件。 我希望每隔一行都有不同的彩色背景。
我试过了:
tr:nth-child(2n+1)
background-color: #E3E3E3
它应该是什么?
谢谢
答案 0 :(得分:9)
这通常用于其他所有项目:
tr:nth-of-type(odd) {
background-color:#E3E3E3;
}
答案 1 :(得分:1)
对我有用:
[hauleth@NIUNIOBOOK] ~ $ sass
tr:nth-child(2n+1)
background-color: #E3E3E3
^D
tr:nth-child(2n+1) {
background-color: #e3e3e3; }
那么你想得到什么?