我目前有这个长期规则
#content #wrapper table td:nth-child(3),
#content #wrapper table td:nth-child(4),
#content #wrapper table td:nth-child(5) {
width: 30px;
}
是否可以将nth-child与nth-child(3,4,5)
之类的短片组合而不是3条单独的线?
答案 0 :(得分:6)
这应该可以解决问题:
#content #wrapper table td:nth-child(n+3):nth-child(-n+5) {
width: 30px;
}
答案 1 :(得分:1)
不是直接基于您的代码,但这应该给您一个想法。
ul li:nth-child(n+3):nth-child(-n+7){ }
答案 2 :(得分:0)
你可以尝试
#content #wrapper table td:nth-child(n+3)
将选择除前2个之外的所有。
答案 3 :(得分:-3)
不是我知道我害怕。如果您正在寻找更少的代码以使其更易于维护,您可以尝试类似SASS。