我想为 4 个一组的子元素设置样式。我需要在nth-child
样式中使用什么表达式?下面每四个元素更改样式。我想要前四个黑色/白色,后四个白色/黑色等。
ul li:nth-child(4n) {
background-color: black;
color: white;
}
ul li:nth-child(4n+1) {
background-color: white;
color: black;
}
我想为 4 个一组的子元素设置样式。我需要在nth-child
样式中使用什么表达式?下面每四个元素更改样式。我想要前四个黑色/白色,后四个白色/黑色等。
ul li:nth-child(4n) {
background-color: black;
color: white;
}
ul li:nth-child(4n+1) {
background-color: white;
color: black;
}