1、奇/偶选择
.row:nth-child(even){ background:#color; } .row:nth-child(odd){ background:#color; }
2、通过属性选择
input[type="text"]{ background:#color }
3、反选
:not(.box){ color:#color; } :not(span){ display:block; }
4、其他
h2:first-child{...} div.text>div{...} h2+header{...}