我想为每个列表元素创建一个具有不同背景的菜单!
/* Adding some background color to the different menu items */
.nav li:nth-child(6n+1) {background: rgb(208, 101, 3);
background-image: url('noise.png');}
.nav li:nth-child(6n+2) {
background: rgb(233, 147, 26);
background-image: url('noise.png');
}
.nav li:nth-child(6n+3) {
background: rgb(22, 145, 190);
background-image: url('noise.png');
}
.nav li:nth-child(6n+4) {
background: rgb(22, 107, 162);
background-image: url('noise.png');
}
.nav li:nth-child(6n+5) {
background: rgb(27, 54, 71);
background-image: url('noise.png');
}
.nav li:nth-child(6n+6) {
background: rgb(21, 40, 54);
background-image: url('noise.png');
}
这是单个元素背景的代码。我希望这段代码更改列表中每个“a”元素的背景,而不是“li”元素!