html表格单元格组合

前端之家收集整理的这篇文章主要介绍了html表格单元格组合前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个3行和3列的表。如何组合最后一列列?我的html:
<table>
  <tr><td></td><td></td><td></td></tr>
  <tr><td></td><td></td><td></td></tr>
  <tr><td>Here I need a cell by all width</td></tr>
</table>

先谢谢你。对不起我的英语不好。

解决方法

使用 colspan属性
<tr><td colspan="3">Here I need a cell by all width</td></tr>

The colspan attribute defines the number of columns a cell should span.

有一个与行相同的相关属性rowspan

原文链接:https://www.f2er.com/html/233051.html

猜你在找的HTML相关文章