CSS 3 Table奇数行と偶数行のスタイルを設定する

332 ワード

CSS 3は、Table奇数行と偶数行のスタイルtableを設定する.
.myTable tr:nth-child(even){     //   
    background:#fff;
}
.myTable tr:nth-child(odd){      //   
    background:#f5f2eb;
}

ulリスト:
#Ulist li:nth-of-type(odd){ margin-left: 20px;}      

#Ulist li:nth-of-type(even){margin-left: 10px;}