空间表跨越

时间:2013-04-08 18:51:43

标签: html html-table

我正在尝试创建一个这样的表:2行和2列是“跨越”,以创建3个合并单元格。

我该怎么做?

table example

1 个答案:

答案 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>