css选择器

选中单数元素

li:nth-child(odd)

选中双数元素

li:nth-child(even)

选中3的倍数的元素

li:nth-child(3n)

你可能感兴趣的:(css,前端,css选择器)