我想改變每個第二,第三和第四的背景顏色。更改每個第二,第三和第四個元素的背景顏色?
所以基本上我需要他們的順序是:
綠,紅,藍,黑。
這是我的小提琴
https://jsfiddle.net/7qkd8jwe/1/
,這是我的CSS代碼:
.item:nth-child(2n+1) {
background-color:red;
}
.item:nth-child(3n+2) {
background-color:blue;
}
.item:nth-child(4n+4) {
background-color:black;
}
.item{
width:100%;
height:100px;
background-color:green;
margin-bottom:10px;
}
可能有人請告知這個問題?
任何幫助,將不勝感激。
這不是關於在其他問題中推薦的賠率和均值。