Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一张桌子。它的第一行包含一个单元格,在我添加了第二行之后,我的第二行的第一个单元格采用了上述单元格(第一行)的宽度。同一张表不同行的单元格之间有什么关系吗?
表格每列中的所有单元格将始终具有相同的宽度,就像 Excel 电子表格一样。如果您想要不同的大小,请使用 colspan,其工作方式类似于在 Excel 中合并单元格
<table> <tr> <td colspan=5>Row 1 col 1</td> </tr> <tr> <td>R2 C1</td><td>R2 C2</td><td>R2 C3</td><td>R2 C4</td><td>R2 C5</td> </tr> </table>