colspan是“column
span(跨列)”的缩写。colspan属性用在td标签中,用来指定单元格横向跨越的列
rowspan的作用是指定单元格纵向跨越的行数。
例如colspan=“3”,rowspan="4"
白菜爱熟男的答案是对的,在他的基础上加个高度,改一下cellspacing基本就能看出形状来了
<table width="500" border="1" cellpadding="5" cellspacing="0"><tr height="50">
<td colspan="2"> </td>
<td> </td>
<td> </td>
</tr>
<tr height="50">
<td colspan="2" rowspan="2"> </td>
<td> </td>
<td> </td>
</tr>
<tr height="50">
<td colspan="2" rowspan="2"> </td>
</tr>
<tr height="50">
<td> </td>
<td> </td>
</tr>
</table>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)