我正在尝试创建一个这样的表:2行和2列是“跨越”,以创建3个合并单元格。
我该怎么做?
答案 0 :(得分:0)
这是执行此操作的基本思路。您可以colspan
属性执行此操作。
<table width="100%">
<tr>
<td style="background-color:green"></td>
<td style="background-color:Red"></td></tr>
<tr>
<td style="background-color:green" colspan="2"></td></tr>
</table>