網頁里table 的rolspan和rowspan的用法
如圖所示啦,容易讓初學者混亂的兩個東西
仔細看看分析下呢,就比較簡單了
<table width="300" border="2"> <tr> <th scope="col"> </th> <th scope="col"> </th> <th scope="col"> </th> </tr> <tr> <td rowspan="2">1
</td> <td>2a
</td> <td>3a
</td> </tr> <tr> <td>2
</td> <td>3
</td> </tr> <tr> <td> </td> <td colspan="2">4
</td> </tr> </table>