colspan 是合併列,rowspan是合併行,合併行的時候,比如rowspan="2",它的下一行tr會少一列;合併列的時候 colspan="2",此行的列會少一列。
程式碼演示:
<table border="1" style={{margin:200}}>
<tbody>
<tr>
<th colspan="2">我是佔位符</th>
</tr>
<th rowspan="2">我是佔位符</th>
<th>我是佔位符</th>
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>