表行扩展了表的整个宽度

时间:2016-09-25 04:31:19

标签: html html-table

是否可以使<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填充表格的宽度。

1 个答案:

答案 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>