标签: css css3 html-table alternate
我需要创建一个包含备用和圆角TR角的表,设法使用类似http://jsfiddle.net/tXa53/
但现在我无法创建替代部分是否有jQuery脚本或其他可行的东西?
答案 0 :(得分:0)
仅使用css:
http://jsfiddle.net/tXa53/3/
我刚补充说:
.newHardware tr:nth-of-type(2n) td{ background:#777; }
您也可以使用nth-child或nth-of-type(even|odd)
nth-child
nth-of-type(even|odd)