标签: html css3 html-lists css-selectors
我想将一些CSS附加到一系列li元素中,但是只有在错过一个后才连续每对。我希望定位的系列示例:
1 3/4 6/7 9/10 12/13
看起来好像li:nth-child可以帮助我,因为n是一个常数整数。
li:nth-child
n
有没有劫持这个并欺骗css一点?或许添加+li?
+li
答案 0 :(得分:3)
您可以使用此规则定位li s:
li
li:not(:nth-child(3n+2)){ color:#c00; }
DEMO