1.奇偶属性:
/*奇数*/
ul li:nth-child(odd){
background-color: green;
}
/*偶数*/
ul li:nth-child(even){
background-color: red;
}
2.大于某个数的选择器
li大于1的li元素的变成红色
ul li:nth-child(n+2){
background-color:red;}
li大于2的li元素的变成绿色
ul li:nth-child(n+3){
background-color:green;}
3.