第二行
第三行
第四行
“` 选中结果:第二行和第四行 ## 选择奇数行 “`htmlp:nth-child(odd) { background-color: #eee; }第一行
第二行
第三行
第四行
“` 选中结果:第一行和第三行 ## 选择第3~5行 “`htmlp:nth-child(n+3):nth-child(-n+5) { background-color: #eee; }第一行
第二行
第三行
第四行
第五行
第六行
“` 选中结果:第三行、第四行和第五行 ## 选择最后3行 “`htmlp:nth-last-child(-n+3) { background-color: #eee; }第一行
第二行
第三行
第四行
第五行
“` 选中结果:第三行、第四行和第五行 通过上述示例,大家可以看到 CSS 序号选择器能够方便地实现复杂的样式效果,开发者可以根据具体需求灵活运用。