»
018. CSS alternate lines color
在用nw.js做第一版ftp-serv桌面软件时,简陋的页面设计中实现了Table隔行变色页面效果。用到的CSS伪类是:nth-child(odd)和:nth-child(even)。
.data-table tr:nth-child(odd) {/*奇数行效果,第一行为1th,第一行为奇数行*/
background-color: green;
}
.data-table tr:nth-child(even) {/*偶数行效果,第二行为2th,第二行为偶数行*/
background-color: blue;
}
————www.v-signon.com学习者共勉