colspan是“column
span(跨列)”的缩写。colspan属性用在td标签中,用来指定单元格横向跨越的列
rowspan的作用是指定单元格纵向跨越的行数。
例如colspan=“3”,rowspan="4"
<!doctype html><html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>
<body>
<table border="1" width="500">
<tr>
<td height="85" colspan="2">&nbsp</td>
<td>&nbsp</td>
<td>&nbsp</td>
</tr>
<tr>
<td colspan="2" rowspan="2" height="200">&nbsp</td>
<td height="100">&nbsp</td>
<td>&nbsp</td>
</tr>
<tr>
<td colspan="2" rowspan="2">&nbsp</td>
</tr>
<tr>
<td height="102">&nbsp</td>
<td>&nbsp</td>
</tr>
</table>
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)