HTML表格
<table border="1">
<tr>
<th>Name</th>
<th colspan="2">Telephone</th> //colspan属性表明跨列数
</tr>
<tr>
<td>Bill Gates</td>
<td>555 77 854</td>
<td>555 77 855</td>
</tr>
</table>

<table border="1">
<tr>
<th>First Name:</th>
<td>Bill Gates</td>
</tr>
<tr>
<th rowspan="2">Telephone:</th>
<td>555 77 854</td>
</tr>
<tr>
<td>555 77 855</td>
</tr>
</table>

<table border="1" cellpadding="10">
<table border="1" cellspacing="10">
posted on 2016-07-21 02:26 Better_ZYQ 阅读(128) 评论(0) 收藏 举报
浙公网安备 33010602011771号