标签云特效颜色随机

先来看下效果

代码:

.plinks li:nth-child(9n+1){
    background: #EB6841;
}
.plinks li:nth-child(9n+2){
    background: #20a8fe;
}
.plinks li:nth-child(9n+3){
    background: #FE4365;
}
.plinks li:nth-child(9n+4){
    background: #EDC951;
}
.plinks li:nth-child(9n+5){
    background-color: #5cb85c;
}
.plinks li:nth-child(9n+6){
    background-color: #b433ff;
}
.plinks li:nth-child(9n+7){
    background-color: #567e95;
}
.plinks li:nth-child(9n+8){
    background-color: #f60;

}
.plinks li:nth-child(9n+9){
    background-color: #d9534f;
}

.

原文地址:https://www.cnblogs.com/fightjianxian/p/8970104.html