table tr:nth-child(odd){background:#F4F4F4;}
table td:nth-child(even){color:#C00;}
分别选择为:奇数行、偶数列
PS:貌似表格元素(包括table、tr、td)的min-height样式只在IE浏览器下才有效。
不过,对表格来说,只要设置height就可以了,因为表格元素内容超过设置的高度时会自动“撑开”。
table tr:nth-child(odd){background:#F4F4F4;}
table td:nth-child(even){color:#C00;}
分别选择为:奇数行、偶数列
PS:貌似表格元素(包括table、tr、td)的min-height样式只在IE浏览器下才有效。
不过,对表格来说,只要设置height就可以了,因为表格元素内容超过设置的高度时会自动“撑开”。