如何用rowpans做斑马桌

时间:2015-10-04 18:02:38

标签: html css html-table

此CSS代码

tbody tr:nth-child(even) {
    background:#eee;
}

或这个JS + CSS代码

$("tr:odd").addClass("odd");

.odd {
   background: #ccc;
}

产生这种斑马表效果:

enter image description here

但是如何实现以下斑马表效果?

enter image description here

这里有一些示例代码:https://jsfiddle.net/61bup2Lr/

0 个答案:

没有答案