第一部分:rowspan使用方法
<table border=2 width="50%">
<tr>
<td rowspan=2>行1,条目1 </td>
<td>行1,条目2</td>
</tr>
<tr><td>行2,条目1</td></tr>
</table>
1. 没有增加rowspan时的效果是:
行1,条目1行1,条目2
行2,条目1
2. 增加rowspan后的效果是:
行1,条目1行1,条目2
行2,条目1
第二部分:colspan使用方法
<table border=2 width="50%">
<tr>
<td>行1,条目1 </td>
<td>行1,条目2</td>
</tr>
<tr><td colspan=2 align="center">行2,条目1</td></tr>
</table>
1. 没有增加rowspan时的效果是:
行1,条目1行1,条目2
行2,条目1"没有内容"
2. 增加rowspan后的效果是:
行1,条目1行1,条目2
行2,条目1(整个为一个单元格)
colspan 是合并列,rowspan是合并行,合并行的时候,比如rowspan="2",它的下一行tr会少一列;合并列的时候 colspan="2",此行的列会少一列。
代码演示:
<table border="1" style={{margin:200}}>
<tbody>
<tr>
<th colspan="2">我是占位符</th>
<th colspan="2">我是占位符</th>
</tr>
<tr>
<th rowspan="2">我是占位符</th>
<th>我是占位符</th>
<th>我是占位符</th>
<th>我是占位符</th>
</tr>
<tr>
<th>我是占位符</th>
<th>我是占位符</th>
<th>我是占位符</th>
</tr>
</tbody>
</table>
演示结果
扩展资料:
rowspan规定表头单元格应该横跨的行数。注意: rowspan="0" 告知浏览器使单元格横跨到表格组件中的最后一个行(thead、tbody 或 tfoot)。
猜测你是想让“获奖经历”和“自我评价”各占一行,如果是这样的话就不需要合并行,所以把最后的“获奖经历”和“自我评价”修改为:
即去掉其中的rowspan="3"
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)