2014年6月7日 星期六

CSS 表格橫列樣式替換效果-Alternate table row

CSS 表格橫列樣式替換效果-Alternate table row

原文:http://www.kangting.tw/2013/10/css-alternate-table-row.html

 tr:nth-child(even) {
            background-color: #f7f7f7;
            color: black;
 }
tr:nth-child(odd) {
            background-color: silver;
            color: black;
 }

可也用jQuery實作

沒有留言:

張貼留言