行距不像我预期的那样工作

时间:2016-09-26 19:50:54

标签: html css web

我想实现这个目标: enter image description here

我用<td>标签做了这些,但只有col span正常工作

            <tr>
                <td><input type="checkbox"></td>
                <td>hu043</td>
                <td>7903</td>
                <td>90df78</td> 
              </tr>
            <tr>

            <tr>

                <td colspan="4" rowspan="4">&nbsp;</td>

            </tr>

1 个答案:

答案 0 :(得分:0)

rowspan的目的是跨越现有行,就像您在示例中跨越现有列一样。

如果你在下面添加一些行,你会看到它。

<tr>
    <td colspan="4" rowspan="4">&nbsp;</td>
</tr>
<tr style='height:20px;'></tr>
<tr style='height:20px;'></tr>
<tr style='height:20px;'></tr>