当前位置 : 主页 > 网页制作 > css >

css3新属性的技巧

来源:互联网 收集:自由互联 发布时间:2021-06-13
1.奇偶属性: /*奇数*/ ul li:nth-child(odd){ background-color: green; } /*偶数*/ ul li:nth-child(even){ background-color: red; } 2.

1.奇偶属性:

/*奇数*/

ul li:nth-child(odd){

background-color: green;

}

/*偶数*/

ul li:nth-child(even){

background-color: red;

}

2.

网友评论