SOURCE

console 命令行工具 X clear

                    
>
console
<div>
    <div class="demo">123</div>
    <div class="demo">456</div>
    <div class="demo">789</div>
    <div class="demo">aaa</div>
</div>
.demo{
    width: 100%;
    height: 50px;
    line-height: 50px
}
/* 偶数 */
div :nth-child(even){ 
    background: red
}
/* 奇数 */
div :nth-child(odd){
    background: green
}
 /* 第一个子元素 */
div :nth-child(1){
    background: green
}