答案 0 :(得分:0)
我想你需要像这样
将borderspacing ='0'添加到表中<table cellspacing='0'>
<thead>
<tr>
<th rowspan="2">header 1</th>
<th rowspan="2">header 2</th>
<th rowspan="2">header 3</th>
</tr>
<tr>
</tr>
</thead>
<tbody>
</tbody>
</table>
和css:
th, td {
border: 1px solid blue;
height: 20px;
}
答案 1 :(得分:0)
您正确使用rowspan =“2” 检查你的代码修改:
<table>
<thead>
<tr>
<th rowspan="2">header 1</th>
<th rowspan="2">header 2</th>
<th rowspan="2">header 3</th>
<th>header 4</th>
</tr>
<tr>
<th>header 5</th>
</tr>
</thead>
<tbody>enter code here
</tbody>
在您的示例中,第一个<tr>
没有任何高度,因此行数没有明显效果......