需要以不同于其他单元格的不同格式对连续行中的单元格进行着色。条件原始格式
伪代码将类似于:
foreach oddrow in table
foreach cell in row
if cellvalue != previosCellvalue(previous even)
color differently
例如:
<table>
<tr>
<td>1</td><td>2</td>
</tr>
<td>1</td><td>3</td>
<tr>
<td>2</td><td>4</td>
</tr>
<tr>
<td>2</td>4<td></td>
</tr>
</table>
在上面的表格中,第一行第二单元格和第二行第二单元格的样式将不同,所有其他将保留其样式。