是否可以使<th class="red-header"><p>Fire</p>
<img src="./pictures/fire.png" alt="fire" class="fire">
</th>
<th class="blue-header"><p>Cold</p>
<img src="./pictures/cold.png" alt="cold" class="cold">
</th>
<th class="yellow-header"><p>Lightning</p>
<img src="./pictures/lightning.png" alt="lightning" class="lightning">
</th>
扩展具有多列的表的整个宽度?
我想要一行包含多个tr
,然后是另一行,其中一行td
填充表格的宽度。
答案 0 :(得分:0)
在这个tr中添加一个td标签并给他属性colspan =&#34; **&#34;
**是他需要捕获的细胞数量。
<table>
<tr>
<td>1</td>
<td>2</td>
</tr>
<tr>
<td colspan="2">big 1</td>
</tr>
</table>